From 510159baced169dfbbbdedd93211cdc01a4cf78c Mon Sep 17 00:00:00 2001 From: Vasil Rangelov Date: Tue, 16 Apr 2013 17:14:28 +0300 Subject: [PATCH] Fixed the dot separation to match the latest PSR (see phpDocumentor/phpDocumentor2#797) --- src/phpDocumentor/Reflection/DocBlock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phpDocumentor/Reflection/DocBlock.php b/src/phpDocumentor/Reflection/DocBlock.php index bf36345..a79d100 100644 --- a/src/phpDocumentor/Reflection/DocBlock.php +++ b/src/phpDocumentor/Reflection/DocBlock.php @@ -158,7 +158,7 @@ class DocBlock implements \Reflector \A ( [^\n.]+ (?: - (?! \. \s | \n{2} ) # disallow the first seperator here + (?! \. \n | \n{2} ) # disallow the first seperator here [\n.] (?! [ \t]* @\pL ) # disallow second seperator [^\n.]+ )*