Completed
Pull Request — master (#2)
by Dawid
06:40 queued 04:26
created
src/EventListener/ResponseSchemaValidatorListener.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/FailedSchemaCheckListener.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/GetMethodOverrideListener.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/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/ControllerAnnotationExtractorTrait.php 1 patch
Spacing   +4 added lines, -4 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\Annotation\Controller;
6 6
 
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @return null|object
18 18
      */
19
-    protected function getClassAnnotationFromController(?callable $controller, string $annotationClass)
19
+    protected function getClassAnnotationFromController(? callable $controller, string $annotationClass)
20 20
     {
21 21
         $objectToReflect = $this->getObjectToReflect($controller);
22 22
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      *
35 35
      * @return null|object
36 36
      */
37
-    protected function getMethodAnnotationFromController(?callable $controller, string $annotationClass)
37
+    protected function getMethodAnnotationFromController(? callable $controller, string $annotationClass)
38 38
     {
39 39
         if (is_array($controller)
40 40
             && isset($controller[1])
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @return null|object
54 54
      */
55
-    protected function getObjectToReflect(?callable $controller)
55
+    protected function getObjectToReflect(? callable $controller)
56 56
     {
57 57
         if (is_object($controller)) {
58 58
             return $controller;
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.