From 5aea3269e1da1e917c2267537241d01c2f9b72e3 Mon Sep 17 00:00:00 2001 From: Leo Feyer Date: Mon, 14 May 2012 17:35:02 +0200 Subject: [PATCH] This will bring back the markdown parser to long descriptions --- src/phpDocumentor/Reflection/DocBlock/LongDescription.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phpDocumentor/Reflection/DocBlock/LongDescription.php b/src/phpDocumentor/Reflection/DocBlock/LongDescription.php index c3a255f..1549edc 100644 --- a/src/phpDocumentor/Reflection/DocBlock/LongDescription.php +++ b/src/phpDocumentor/Reflection/DocBlock/LongDescription.php @@ -78,7 +78,7 @@ class LongDescription implements \Reflector ); } - if (class_exists('\dflydev\markdown\MarkdownExtraParser()')) { + if (class_exists('\dflydev\markdown\MarkdownExtraParser')) { $md = new \dflydev\markdown\MarkdownExtraParser(); $result = $md->transformMarkdown($result); }