From e4e9f6223073b325478697402fcc239ffbf30a1b Mon Sep 17 00:00:00 2001 From: FlorianLB Date: Fri, 16 Nov 2012 12:14:46 +0100 Subject: [PATCH] CS fix --- Extractor/ApiDocExtractor.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Extractor/ApiDocExtractor.php b/Extractor/ApiDocExtractor.php index 51cdce7..f0306f6 100644 --- a/Extractor/ApiDocExtractor.php +++ b/Extractor/ApiDocExtractor.php @@ -353,8 +353,7 @@ class ApiDocExtractor 'description' => $annot->description, )); } - } - else if (is_a($annot, self::FOS_REST_REQUEST_PARAM_CLASS)) { + } else if (is_a($annot, self::FOS_REST_REQUEST_PARAM_CLASS)) { $annotation->addParameter($annot->name, array( 'required' => !$annot->nullable, 'dataType' => $annot->requirements,