Passed
Push — master ( 5a6835...92c66b )
by Hergen
18:42 queued 15:12
created
src/Middleware/IfMatch.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     public function handle(Request $request, Closure $next)
22 22
     {
23 23
         // Next unless method is PATCH and If-Match header is set
24
-        if (! ($request->isMethod('PATCH') && $request->hasHeader('If-Match'))) {
24
+        if (!($request->isMethod('PATCH') && $request->hasHeader('If-Match'))) {
25 25
             return $next($request);
26 26
         }
27 27
 
@@ -41,8 +41,7 @@  discard block
 block discarded – undo
41 41
         }
42 42
 
43 43
         $ifMatchArray = (is_string($ifMatch)) ?
44
-            explode(',', $ifMatch) :
45
-            $ifMatch;
44
+            explode(',', $ifMatch) : $ifMatch;
46 45
 
47 46
         // Strip W/ if weak comparison algorithm can be used
48 47
         if (config('etagconditionals.if_match_weak')) {
@@ -59,7 +58,7 @@  discard block
 block discarded – undo
59 58
 
60 59
         // Compare current and request hashes
61 60
         // Also allow wildcard (*) values
62
-        if (! (in_array($getEtag, $ifMatchArray) || in_array('"*"', $ifMatchArray))) {
61
+        if (!(in_array($getEtag, $ifMatchArray) || in_array('"*"', $ifMatchArray))) {
63 62
             return response(null, 412);
64 63
         }
65 64
 
Please login to merge, or discard this patch.