ZF2-583: DocblockScanner doesn't return tags correctly with tab indenting
Description
I've written the following unit test in \Zend\Code\Scanner\DocBlockScannerTest to reproduce the problem, but no tags are returned by the scanner. My attempt to fix the bug and create a pull request failed, because I kept introducing other bugs.
public function testDocBlockScannerParsesTagsWithTabIndenting() { $docComment = <<getTags(); $this->assertCount(1, $tags); $this->assertEquals('@return', $tags[0]['name']); $this->assertEquals(' string', $tags[0]['value']); }
Comments
Posted by Ralph Schindler (ralph) on 2012-10-08T20:11:03.000+0000
This issue has been closed on Jira and moved to GitHub for issue tracking. To continue following the resolution of this issues, please visit: https://github.com/zendframework/zf2/issues/2608