Test Failed
Push — master ( cd511c...7a0943 )
by César
03:28 queued 01:23
created
tests/TestCaseUserController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,10 +40,10 @@
 block discarded – undo
40 40
      */
41 41
     public function testCreateUserView()
42 42
     {
43
-       $http = $this->http->get('users/create');
44
-       $output = $http->getBody()->getContents();
45
-       $this->assertEquals(200, $http->getStatusCode());
46
-       $this->assertEquals('view create user', $output);
43
+        $http = $this->http->get('users/create');
44
+        $output = $http->getBody()->getContents();
45
+        $this->assertEquals(200, $http->getStatusCode());
46
+        $this->assertEquals('view create user', $output);
47 47
     }
48 48
 
49 49
     /**
Please login to merge, or discard this patch.
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.