Test Setup Failed
Push — ft/command-palette ( bece37...ccd98a )
by
unknown
11:42
created
app/Http/Middleware/VerifyCsrfToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $adminRoute = config('chief.route.prefix', '/admin');
21 21
 
22 22
         // Add exception routes for all chief admin endpoints.
23
-        $this->except[] = rtrim($adminRoute, '/') . '/*';
23
+        $this->except[] = rtrim($adminRoute, '/').'/*';
24 24
 
25 25
         return parent::handle($request, $next);
26 26
     }
Please login to merge, or discard this patch.
app/Http/Middleware/AuthenticateSuperadmin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@
 block discarded – undo
38 38
     {
39 39
         // Low level way to only allow TT users
40 40
         // this is not a safe way to handle security and is only used for convenience, not to secure page restriction!!
41
-        if (! $this->auth->user() || ! $this->authorize('update-squanto')) {
41
+        if (!$this->auth->user() || !$this->authorize('update-squanto')) {
42 42
             if ($request->ajax()) {
43 43
                 return response('Unauthorized.', 401);
44
-            } else {
44
+            }else {
45 45
                 return redirect()->guest('admin/login');
46 46
             }
47 47
         }
Please login to merge, or discard this patch.
app/Http/Middleware/PermissionMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             return redirect('/');
21 21
         }
22 22
 
23
-        if (! $request->user('chief')->can($permission)) {
23
+        if (!$request->user('chief')->can($permission)) {
24 24
             abort(403);
25 25
         }
26 26
 
Please login to merge, or discard this patch.
app/Http/Middleware/ChiefValidateInvite.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,18 +18,18 @@
 block discarded – undo
18 18
     public function handle($request, Closure $next)
19 19
     {
20 20
         // Verifies a valid signature and still outside expiration period
21
-        if (! $request->hasValidSignature()) {
21
+        if (!$request->hasValidSignature()) {
22 22
             return redirect()->route('invite.expired');
23 23
         }
24 24
 
25
-        if (! $invitation = Invitation::findByToken($request->token)) {
25
+        if (!$invitation = Invitation::findByToken($request->token)) {
26 26
             return redirect()->route('invite.expired');
27 27
         }
28 28
 
29 29
         if (in_array($invitation->stateOf(InvitationState::KEY), [InvitationState::ACCEPTED, InvitationState::REVOKED])) {
30 30
 
31 31
             // We allow the user to pass if the invitee is already logged in. Otherwise the invite link cannot be reused.
32
-            if (! auth()->guard('chief')->check() || ! auth()->guard('chief')->user()->is($invitation->invitee)) {
32
+            if (!auth()->guard('chief')->check() || !auth()->guard('chief')->user()->is($invitation->invitee)) {
33 33
                 return redirect()->route('invite.expired');
34 34
             }
35 35
         }
Please login to merge, or discard this patch.
app/Exceptions/ChiefExceptionHandler.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     protected function unauthorized(\Illuminate\Http\Request $request, AuthorizationException $exception)
83 83
     {
84 84
         return redirect()->route('chief.back.dashboard')
85
-                         ->with('messages.error', 'Oeps. Het lijkt erop dat je geen toegang hebt tot dit deel van chief. Vraag even de beheerder voor meer info.');
85
+                            ->with('messages.error', 'Oeps. Het lijkt erop dat je geen toegang hebt tot dit deel van chief. Vraag even de beheerder voor meer info.');
86 86
     }
87 87
 
88 88
     /**
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,12 +62,12 @@  discard block
 block discarded – undo
62 62
 
63 63
     private function shouldRenderChiefException(Throwable $exception): bool
64 64
     {
65
-        return (Str::startsWith(request()->path(), 'admin/') && ! $exception instanceof AuthenticationException && ! $exception instanceof ValidationException);
65
+        return (Str::startsWith(request()->path(), 'admin/') && !$exception instanceof AuthenticationException && !$exception instanceof ValidationException);
66 66
     }
67 67
 
68 68
     protected function renderChiefException(\Illuminate\Http\Request $request, Throwable $exception)
69 69
     {
70
-        if (! config('app.debug')) {
70
+        if (!config('app.debug')) {
71 71
             if ($request->expectsJson()) {
72 72
                 return response()->json(['error' => 'Something went wrong.'], 404);
73 73
             }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             return response()->json(['error' => 'Unauthenticated.'], 401);
99 99
         }
100 100
 
101
-        if (! empty($exception->guards()) && Arr::first($exception->guards()) == 'chief') {
101
+        if (!empty($exception->guards()) && Arr::first($exception->guards()) == 'chief') {
102 102
             return redirect()->guest(route('chief.back.login'));
103 103
         }
104 104
 
Please login to merge, or discard this patch.
app/View/Livewire/FieldsWindow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
 
41 41
     public function reload(): void
42 42
     {
43
-        $this->emit($this->tag. 'Reloaded');
43
+        $this->emit($this->tag.'Reloaded');
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
app/Console/BaseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $password = $passwordConfirm = null;
30 30
         $tries = 0;
31 31
 
32
-        while (! $password || strlen($password) < 4 || $password != $passwordConfirm) {
32
+        while (!$password || strlen($password) < 4 || $password != $passwordConfirm) {
33 33
             if ($tries > 2) {
34 34
                 throw new \Exception('Aborting. Too many failed attempts to set password');
35 35
             }
Please login to merge, or discard this patch.
app/Console/ChiefPublishCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
 
10 10
     public function handle(): void
11 11
     {
12
-        if (! $this->hasArgument('part')) {
12
+        if (!$this->hasArgument('part')) {
13 13
             $part = $this->ask('which part');
14
-        } else {
14
+        }else {
15 15
             $part = $this->argument('part');
16 16
         }
17 17
 
18
-        $this->info($part . ' published');
18
+        $this->info($part.' published');
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
app/Console/RefreshDatabase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         }
18 18
 
19 19
         if ($this->option('reset')) {
20
-            if (! $this->confirm('You are about to force reset the database in the ' . app()->environment() . ' environment! ARE YOU SURE?')) {
20
+            if (!$this->confirm('You are about to force reset the database in the '.app()->environment().' environment! ARE YOU SURE?')) {
21 21
                 $this->info('aborting.');
22 22
 
23 23
                 return;
Please login to merge, or discard this patch.