diff --git a/src/DocBlockFactory.php b/src/DocBlockFactory.php index 9ec2455d..e71d83cc 100644 --- a/src/DocBlockFactory.php +++ b/src/DocBlockFactory.php @@ -228,7 +228,11 @@ private function parseTagBlock($tags, Types\Context $context) $result = $this->splitTagBlockIntoTagLines($tags); foreach ($result as $key => $tagLine) { - $result[$key] = $this->tagFactory->create(trim($tagLine), $context); + try { + $result[$key] = $this->tagFactory->create(trim($tagLine), $context); + } + catch(\Exception $e) { + } } return $result;