mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-17 17:47:13 +00:00
Fix @return type/description seperation
Per issue phpDocumentor/phpDocumentor2#623 should a newline directly behind the type of a multiline @return tag be interpreted correctly. Currently seperation occurs on the first space or tab but this is not sufficient.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
/**
|
||||
* phpDocumentor
|
||||
*
|
||||
* PHP Version 5
|
||||
* PHP Version 5.3
|
||||
*
|
||||
* @author Mike van Riel <[email protected]>
|
||||
* @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
|
||||
@@ -24,7 +24,7 @@ class LongDescription implements \Reflector
|
||||
/** @var string */
|
||||
protected $contents = '';
|
||||
|
||||
/** @var \phpDocumentor\Reflection\DocBlock\Tags[] */
|
||||
/** @var Tag[] */
|
||||
protected $tags = array();
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user