Passed
Push — master ( 353d8d...466fd2 )
by Hergen
12:11
created
src/Middleware/IfMatch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     public function handle(Request $request, Closure $next)
23 23
     {
24 24
         // Next unless method is PATCH and If-Match header is set
25
-        if (! ($request->isMethod('PATCH') && $request->hasHeader('If-Match'))) {
25
+        if (!($request->isMethod('PATCH') && $request->hasHeader('If-Match'))) {
26 26
             return $next($request);
27 27
         }
28 28
 
Please login to merge, or discard this patch.