Passed
Push — master ( 18ef07...79d67e )
by
unknown
14:01 queued 11:02
created
src/ServerTimingServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register()
23 23
     {
24
-        $this->app->singleton(ServerTiming::class, function ($app) {
24
+        $this->app->singleton(ServerTiming::class, function($app) {
25 25
             return new ServerTiming(new \Symfony\Component\Stopwatch\Stopwatch());
26 26
         });
27 27
     }
Please login to merge, or discard this patch.
src/Middleware/ServerTimingMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     public function handle(Request $request, Closure $next)
26 26
     {
27
-        if(false === config('timing.enabled', true)) {
27
+        if (false === config('timing.enabled', true)) {
28 28
             return $next($request);
29 29
         }
30 30
 
Please login to merge, or discard this patch.
src/ServerTiming.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     public function measure(string $key)
36 36
     {
37
-        if (! $this->hasStartedEvent($key)) {
37
+        if (!$this->hasStartedEvent($key)) {
38 38
             return $this->start($key);
39 39
         }
40 40
 
Please login to merge, or discard this patch.