Passed
Push — develop ( ba19c4...a97f10 )
by Brent
02:32
created
src/Stitcher/Application/Server.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     protected function getRequest(): Request
45 45
     {
46
-        if (! $this->request) {
46
+        if (!$this->request) {
47 47
             $this->request = ServerRequest::fromGlobals();
48 48
         }
49 49
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function handleDynamicRoute(): ?Response
63 63
     {
64
-        if (! $this->router) {
64
+        if (!$this->router) {
65 65
             return null;
66 66
         }
67 67
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         try {
74 74
             $response = $this->handleStaticRoute();
75 75
 
76
-            if (! $response) {
76
+            if (!$response) {
77 77
                 $response = $this->handleDynamicRoute();
78 78
             }
79 79
         } catch (StitcherException $e) {
Please login to merge, or discard this patch.