@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -30,6 +30,6 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function canInitSchemaManager() |
32 | 32 | { |
33 | - static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/data.json'); |
|
33 | + static::initSchemaManager(__DIR__.'/PetStore/app/swagger/data.json'); |
|
34 | 34 | } |
35 | 35 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public static function setUpBeforeClass() |
32 | 32 | { |
33 | - static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml'); |
|
33 | + static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml'); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public static function setUpBeforeClass() |
32 | 32 | { |
33 | - static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml'); |
|
33 | + static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml'); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | } catch (ApiResponseErrorException $e) { |
82 | 82 | $error = Hal::fromJson($e->getJson(), 10); |
83 | 83 | $resource = $error->getFirstResource('errors'); |
84 | - $specLink = $url . '#/paths/~1pet~1findByStatus/get/parameters/0/body/properties/quantity'; |
|
84 | + $specLink = $url.'#/paths/~1pet~1findByStatus/get/parameters/0/body/properties/quantity'; |
|
85 | 85 | $this->assertSame($specLink, $resource->getUri()); |
86 | 86 | |
87 | 87 | return; |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -25,14 +25,14 @@ discard block |
||
25 | 25 | public function load(array $configs, ContainerBuilder $container) |
26 | 26 | { |
27 | 27 | $config = $this->processConfiguration(new Configuration(), $configs); |
28 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
28 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
29 | 29 | $loader->load('services.yml'); |
30 | 30 | |
31 | 31 | $container->setParameter('swagger.document.base_path', $config['document']['base_path']); |
32 | 32 | $container->setParameter('swagger.serializer.namespace', $config['serializer']['namespace']); |
33 | 33 | |
34 | 34 | $serializerType = $config['serializer']['type']; |
35 | - $container->setAlias('swagger.serializer.target', 'swagger.serializer.' . $serializerType); |
|
35 | + $container->setAlias('swagger.serializer.target', 'swagger.serializer.'.$serializerType); |
|
36 | 36 | |
37 | 37 | if ($serializerType !== 'array') { |
38 | 38 | $resolverDefinition = $container->getDefinition('swagger.request.processor.content_decoder'); |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | /* |
3 | 3 | * This file is part of the KleijnWeb\SwaggerBundle package. |
4 | 4 | * |