diff --git a/Extractor/CachingApiDocExtractor.php b/Extractor/CachingApiDocExtractor.php index eb359d2..997fa48 100644 --- a/Extractor/CachingApiDocExtractor.php +++ b/Extractor/CachingApiDocExtractor.php @@ -38,15 +38,15 @@ class CachingApiDocExtractor extends ApiDocExtractor private $debug; /** - * @param ContainerInterface $container - * @param RouterInterface $router - * @param Reader $reader - * @param DocCommentExtractor $commentExtractor + * @param ContainerInterface $container + * @param RouterInterface $router + * @param Reader $reader + * @param DocCommentExtractor $commentExtractor * @param ControllerNameParser $controllerNameParser - * @param array $handlers - * @param array $annotationsProviders - * @param string $cacheFile - * @param bool|false $debug + * @param array $handlers + * @param array $annotationsProviders + * @param string $cacheFile + * @param bool|false $debug */ public function __construct( ContainerInterface $container, @@ -66,7 +66,7 @@ class CachingApiDocExtractor extends ApiDocExtractor } /** - * @param string $view View name + * @param string $view View name * @return array|mixed */ public function all($view = ApiDoc::DEFAULT_VIEW) @@ -99,7 +99,7 @@ class CachingApiDocExtractor extends ApiDocExtractor } /** - * @param string $view + * @param string $view * @return ConfigCache */ private function getViewCache($view) diff --git a/Parser/JsonSerializableParser.php b/Parser/JsonSerializableParser.php index 2ff1b97..818e623 100644 --- a/Parser/JsonSerializableParser.php +++ b/Parser/JsonSerializableParser.php @@ -42,6 +42,7 @@ class JsonSerializableParser implements ParserInterface if (isset($input['name']) && !empty($input['name'])) { $output = array(); $output[$input['name']] = $parsed; + return $output; } @@ -79,7 +80,7 @@ class JsonSerializableParser implements ParserInterface * Check for numeric sequential keys, just like the json encoder does * Credit: http://stackoverflow.com/a/25206156/859027 * - * @param array $arr + * @param array $arr * @return bool */ private function isSequential(array $arr) @@ -89,6 +90,7 @@ class JsonSerializableParser implements ParserInterface return false; } } + return true; } } diff --git a/Parser/ValidationParser.php b/Parser/ValidationParser.php index a0b6496..ec64618 100644 --- a/Parser/ValidationParser.php +++ b/Parser/ValidationParser.php @@ -83,6 +83,7 @@ class ValidationParser implements ParserInterface, PostParserInterface 'readonly' => null, 'children' => $parsed ); + return $output; } diff --git a/Tests/Command/DumpCommandTest.php b/Tests/Command/DumpCommandTest.php index 8c41934..b2ce41b 100644 --- a/Tests/Command/DumpCommandTest.php +++ b/Tests/Command/DumpCommandTest.php @@ -12,9 +12,9 @@ class DumpCommandTest extends WebTestCase /** * @dataProvider viewProvider * - * @param string $view Command view option value - * @param array $expectedMethodsCount Expected resource methods count - * @param array $expectedMethodValues Expected resource method values + * @param string $view Command view option value + * @param array $expectedMethodsCount Expected resource methods count + * @param array $expectedMethodValues Expected resource method values */ public function testDumpWithViewOption($view, array $expectedMethodsCount, array $expectedMethodValues) { diff --git a/Tests/Extractor/ApiDocExtractorTest.php b/Tests/Extractor/ApiDocExtractorTest.php index c1f431a..7dbf212 100644 --- a/Tests/Extractor/ApiDocExtractorTest.php +++ b/Tests/Extractor/ApiDocExtractorTest.php @@ -23,7 +23,8 @@ class ApiDocExtractorTest extends WebTestCase private static $ROUTES_QUANTITY_PREMIUM = 6; // Routes in the premium view private static $ROUTES_QUANTITY_TEST = 2; // Routes in the test view - public static function setUpBeforeClass() { + public static function setUpBeforeClass() + { if (class_exists('Dunglas\ApiBundle\DunglasApiBundle')) { self::$ROUTES_QUANTITY_DEFAULT += self::NB_ROUTES_ADDED_BY_DUNGLAS_API_BUNDLE; self::$ROUTES_QUANTITY_PREMIUM += self::NB_ROUTES_ADDED_BY_DUNGLAS_API_BUNDLE; diff --git a/Tests/Extractor/CachingApiDocExtractorTest.php b/Tests/Extractor/CachingApiDocExtractorTest.php index 4a918b8..36892b8 100644 --- a/Tests/Extractor/CachingApiDocExtractorTest.php +++ b/Tests/Extractor/CachingApiDocExtractorTest.php @@ -16,6 +16,7 @@ class CachingApiDocExtractorTest extends WebTestCase $data = ApiDocExtractorTest::dataProviderForViews(); // remove default view data from provider array_shift($data); + return $data; } diff --git a/Tests/Parser/JsonSerializableParserTest.php b/Tests/Parser/JsonSerializableParserTest.php index f4db0d3..88d4e98 100644 --- a/Tests/Parser/JsonSerializableParserTest.php +++ b/Tests/Parser/JsonSerializableParserTest.php @@ -3,10 +3,8 @@ * Created by mcfedr on 30/06/15 21:06 */ - namespace NelmioApiDocBundle\Tests\Parser; - use Nelmio\ApiDocBundle\Parser\JsonSerializableParser; class JsonSerializableParserTest extends \PHPUnit_Framework_TestCase