Passed
Pull Request — master (#114)
by
unknown
14:30
created
src/Middlewares/MagiclinkMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
 
17 17
         $magicLink = MagicLink::getValidMagicLinkByToken($token);
18 18
 
19
-        if($request->method() === 'HEAD') {
19
+        if ($request->method() === 'HEAD') {
20 20
             return new IlluminateResponse(null, ($magicLink) ? 200 : 404);
21 21
         }
22 22
 
23
-        if (! $magicLink) {
23
+        if ( ! $magicLink) {
24 24
             return $this->badResponse();
25 25
         }
26 26
 
Please login to merge, or discard this patch.