Passed
Push — develop ( da958d...4e6cc2 )
by nguereza
03:00
created
src/Http/Middleware/MaintenanceMiddleware.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
             );
138 138
 
139 139
             $httpException->setTitle('Service Unavailable')
140
-                          ->setDescription($message);
140
+                            ->setDescription($message);
141 141
 
142 142
             // TODO Add headers
143 143
             throw $httpException;
@@ -241,9 +241,9 @@  discard block
 block discarded – undo
241 241
         $sessionCookieConfig = $this->config->get('session.cookie', []);
242 242
 
243 243
         $cookie->withExpires($expire)
244
-               ->withPath($sessionCookieConfig['path'] ?? null)
245
-               ->withDomain($sessionCookieConfig['domain'] ?? null)
246
-               ->withHttpOnly(true);
244
+                ->withPath($sessionCookieConfig['path'] ?? null)
245
+                ->withDomain($sessionCookieConfig['domain'] ?? null)
246
+                ->withHttpOnly(true);
247 247
 
248 248
 
249 249
         return $cookie;
Please login to merge, or discard this patch.