@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | use Doctrine\Common\Annotations\AnnotationRegistry; |
4 | 4 | use Composer\Autoload\ClassLoader; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $this->jsonDecoderMock |
49 | 49 | ->expects($this->any()) |
50 | 50 | ->method('decode') |
51 | - ->willReturnCallback(function ($string) { |
|
51 | + ->willReturnCallback(function($string) { |
|
52 | 52 | $data = json_decode($string); |
53 | 53 | if (is_null($data)) { |
54 | 54 | throw new \Exception(); |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /* |
4 | 4 | * This file is part of the KleijnWeb\SwaggerBundle package. |
5 | 5 | * |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $this->contentDecoderMock |
35 | 35 | ->expects($this->any()) |
36 | 36 | ->method('decodeContent') |
37 | - ->willReturnCallback(function (Request $request) { |
|
37 | + ->willReturnCallback(function(Request $request) { |
|
38 | 38 | return json_decode($request->getContent()); |
39 | 39 | }); |
40 | 40 | } |