Completed
Push — master ( 0ae072...5bde57 )
by Anton
04:24 queued 01:11
created
src/Authentication/Services/Authenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public static function check(Request $request): bool
35 35
     {
36
-        return (static::$using ?: function () {
36
+        return (static::$using ?: function() {
37 37
             return app()->environment('local');
38 38
         })($request);
39 39
     }
Please login to merge, or discard this patch.
src/Providers/SenseServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             'prefix' => config('sense.uri', 'sense'),
62 62
             'namespace' => 'Cog\Laravel\Sense\Http\Controllers',
63 63
             'middleware' => config('sense.middleware', 'web'),
64
-        ], function () {
64
+        ], function() {
65 65
             $this->loadRoutesFrom(__DIR__ . '/../../routes/web.php');
66 66
         });
67 67
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             // TODO: Add body
128 128
         ]);
129 129
 
130
-        DB::listen(function (QueryExecuted $query) use ($requestId, $requestSummary) {
130
+        DB::listen(function(QueryExecuted $query) use ($requestId, $requestSummary) {
131 131
             if ($this->isQueryShouldBeStored($query)) {
132 132
                 $this->storeStatement($requestId, $query);
133 133
                 $this->updateRequestSummary($requestSummary, $query);
Please login to merge, or discard this patch.