Completed
Push — master ( 0b7273...69a9c3 )
by Dawid
09:25
created
src/Utils/AssertUtils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\Utils;
6 6
 
Please login to merge, or discard this patch.
src/Event/ApiVersion/ApiVersionSetEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\Event\ApiVersion;
6 6
 
Please login to merge, or discard this patch.
src/Annotation/Controller/ApiVersion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\Annotation\Controller;
6 6
 
Please login to merge, or discard this patch.
src/EventListener/ApiVersionListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\EventListener;
6 6
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @return null|ApiVersion
59 59
      */
60
-    protected function getApiVersionFromController(?callable $controller): ?ApiVersion
60
+    protected function getApiVersionFromController(? callable $controller) : ?ApiVersion
61 61
     {
62 62
         return $this->getClassAnnotationFromController($controller, ApiVersion::class);
63 63
     }
Please login to merge, or discard this patch.
src/EventListener/ApiVersionProviderListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\EventListener;
6 6
 
Please login to merge, or discard this patch.
src/EventListener/VersionedViewListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\EventListener;
6 6
 
Please login to merge, or discard this patch.
src/EventListener/RequestSchemaValidatorListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\EventListener;
6 6
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      *
48 48
      * @return null|ResponseSchemaValidator
49 49
      */
50
-    protected function getResponseSchemaValidator(?callable $controller): ?ResponseSchemaValidator
50
+    protected function getResponseSchemaValidator(? callable $controller) : ?ResponseSchemaValidator
51 51
     {
52 52
         return $this->getMethodAnnotationFromController($controller, ResponseSchemaValidator::class);
53 53
     }
Please login to merge, or discard this patch.
src/Service/ApiVersionProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\Service;
6 6
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @param null|string $apiVersion
16 16
      */
17
-    public function setApiVersion(?string $apiVersion): void
17
+    public function setApiVersion(?string $apiVersion) : void
18 18
     {
19 19
         $this->apiVersion = $apiVersion;
20 20
     }
Please login to merge, or discard this patch.
src/Service/VersionedViewInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Spiechu\SymfonyCommonsBundle\Service;
6 6
 
Please login to merge, or discard this patch.