Fixing the other RegExes as well since they were also not using the u modifier

This commit is contained in:
Mike van Riel
2012-07-13 20:07:51 +02:00
parent 33a2e55cbc
commit 2b05ea3221
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ class DocBlock implements \Reflector
{
$comment = trim(
preg_replace(
'#[ \t]*(?:\/\*\*|\*\/|\*)?[ \t]{0,1}(.*)?#', '$1', $comment
'#[ \t]*(?:\/\*\*|\*\/|\*)?[ \t]{0,1}(.*)?#u', '$1', $comment
)
);