From 0c15eb99f59e01a6e4b233016a3c84b8f4a132cf Mon Sep 17 00:00:00 2001 From: Vasil Rangelov Date: Sat, 17 Nov 2012 17:32:48 +0200 Subject: [PATCH] Removed redundant preg_split from SourceTag (mistakenly pasted from ReturnTag). --- src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php b/src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php index 09b4612..712c3d1 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php +++ b/src/phpDocumentor/Reflection/DocBlock/Tag/SourceTag.php @@ -45,7 +45,6 @@ class SourceTag extends Tag public function __construct($type, $content, DocBlock $docblock = null) { parent::__construct($type, $content, $docblock); - $content = preg_split('/[\ \t]+/u', $this->description, 2); if (preg_match( '/^([1-9]\d*)\s*(?:([1-9]\d*)\s+)?(.*)$/su', $this->description,