Test Failed
Push — master ( 649313...a02b76 )
by César
03:58 queued 02:09
created
src/Route.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
     public function getRoute()
133 133
     {
134 134
         return [
135
-           'name' => $this->getName(),
136
-           'path' => $this->getUrl(),
137
-           'callable' => $this->getCallable(),
138
-           'parameters' => self::resolveParameters()
135
+            'name' => $this->getName(),
136
+            'path' => $this->getUrl(),
137
+            'callable' => $this->getCallable(),
138
+            'parameters' => self::resolveParameters()
139 139
         ];
140 140
     }
141 141
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      */
147 147
     public function getRequest(): Request
148 148
     {
149
-       return $this->request;
149
+        return $this->request;
150 150
     }
151 151
 
152 152
     /**
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      */
157 157
     public function getResponse(): Response
158 158
     {
159
-       return $this->response;
159
+        return $this->response;
160 160
     }
161 161
 
162 162
     /**
Please login to merge, or discard this patch.