@@ -32,7 +32,7 @@ |
||
32 | 32 | $this->contentDecoderMock |
33 | 33 | ->expects($this->any()) |
34 | 34 | ->method('decodeContent') |
35 | - ->willReturnCallback(function (Request $request) { |
|
35 | + ->willReturnCallback(function(Request $request) { |
|
36 | 36 | return json_decode($request->getContent()); |
37 | 37 | }); |
38 | 38 | } |
@@ -203,7 +203,7 @@ |
||
203 | 203 | $logger |
204 | 204 | ->expects($this->once()) |
205 | 205 | ->method('log') |
206 | - ->with($this->anything(), $this->callback(function ($message) use (&$logref) { |
|
206 | + ->with($this->anything(), $this->callback(function($message) use (&$logref) { |
|
207 | 207 | $matches = []; |
208 | 208 | if (preg_match('/logref ([a-z0-9]*)/', $message, $matches)) { |
209 | 209 | $logref = $matches[1]; |
@@ -25,14 +25,14 @@ |
||
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'); |
@@ -30,6 +30,6 @@ |
||
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 | } |
@@ -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; |
@@ -28,7 +28,7 @@ |
||
28 | 28 | |
29 | 29 | public static function setUpBeforeClass() |
30 | 30 | { |
31 | - static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml'); |
|
31 | + static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml'); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -6,7 +6,7 @@ |
||
6 | 6 | /** |
7 | 7 | * @var ClassLoader $loader |
8 | 8 | */ |
9 | -$loader = require __DIR__ . '/../../../../../vendor/autoload.php'; |
|
9 | +$loader = require __DIR__.'/../../../../../vendor/autoload.php'; |
|
10 | 10 | |
11 | 11 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
12 | 12 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | public static function setUpBeforeClass() |
29 | 29 | { |
30 | - static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml'); |
|
30 | + static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml'); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | { |
64 | 64 | $id = rand(); |
65 | 65 | |
66 | - $responseData = $this->get('/v2/pet/' . $id); |
|
66 | + $responseData = $this->get('/v2/pet/'.$id); |
|
67 | 67 | |
68 | 68 | $this->assertSame($id, $responseData->id); |
69 | 69 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | |
29 | 29 | public static function setUpBeforeClass() |
30 | 30 | { |
31 | - static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml'); |
|
31 | + static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml'); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |