Completed
Push — master ( 0b7273...69a9c3 )
by Dawid
09:25
created
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.