ZF-7484: Zend_Reflection_Docblock_Tag does not handle tag description "0"
Description
The Docblock tag reflection does not handle descriptions like: @tag 0 because of wrong description existence check. This can be handled but it may be confusing.
The following change should fix this issue:
Zend/Reflection/Docblock/Tag.php -118: if ($matches[2]) { +118: if (!is_null($matches[2]) {
Comments
Posted by Carlton Gibson (carlton) on 2009-09-17T07:14:47.000+0000
This was fixed with r18072.