Passed
Push — master ( f53b30...7d5107 )
by Hergen
01:02 queued 14s
created
src/EtagConditionalsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $this->mergeConfigFrom(__DIR__.'/../config/etagconditionals.php', 'etagconditionals');
48 48
 
49 49
         // Register the service the package provides.
50
-        $this->app->singleton('etagconditionals', function ($app) {
50
+        $this->app->singleton('etagconditionals', function($app) {
51 51
             return new EtagConditionals;
52 52
         });
53 53
     }
Please login to merge, or discard this patch.
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.