Completed
Branch master (b6ce2f)
by Eric
01:40
created
src/Skill/Routing/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         $this->router = $router;
25 25
     }
26 26
 
27
-    public function name(): ?string
27
+    public function name(): ? string
28 28
     {
29 29
         return $this->name;
30 30
     }
Please login to merge, or discard this patch.
src/Skill/EventBroadcaster/ExceptionEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         return $this->exception;
25 25
     }
26 26
 
27
-    public function response(): ?Response
27
+    public function response(): ? Response
28 28
     {
29 29
         return $this->response;
30 30
     }
Please login to merge, or discard this patch.
src/Skill/DependencyInjection/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $values = [];
62 62
         $pattern = str_replace(['.', '*'], ['\.', '[\w\-\.]*'], $id);
63 63
         foreach ($this->keys() as $id) {
64
-            if (1 === preg_match('/^'.$pattern.'$/', $id)) {
64
+            if (1 === preg_match('/^' . $pattern . '$/', $id)) {
65 65
                 $values[] = $this->offsetGet($id);
66 66
             }
67 67
         }
Please login to merge, or discard this patch.