Passed
Push — master ( acf2dc...3a8b1f )
by Curtis
12:39
created
app/Providers/HorizonServiceProvider.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
     protected function gate()
23 23
     {
24
-        Gate::define('viewHorizon', function ($user) {
24
+        Gate::define('viewHorizon', function($user) {
25 25
             return auth()->check() && user()->isAdmin();
26 26
         });
27 27
     }
Please login to merge, or discard this patch.
app/Providers/TelescopeServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
         $this->hideSensitiveRequestDetails();
17 17
 
18
-        Telescope::filter(function (IncomingEntry $entry) {
18
+        Telescope::filter(function(IncomingEntry $entry) {
19 19
             if ($this->app->isLocal()) {
20 20
                 return true;
21 21
             }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     protected function gate()
46 46
     {
47
-        Gate::define('viewTelescope', function ($user) {
47
+        Gate::define('viewTelescope', function($user) {
48 48
             return auth()->check() && $user->isAdmin();
49 49
         });
50 50
     }
Please login to merge, or discard this patch.