We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | class VerifyEmailController extends Controller |
11 | 11 | { |
12 | - public null|string $redirectTo = null; |
|
12 | + public null | string $redirectTo = null; |
|
13 | 13 | /** |
14 | 14 | * Create a new controller instance. |
15 | 15 | * |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $this->middleware('signed')->only('verifyEmail'); |
22 | 22 | $this->middleware('throttle:6,1')->only('resendVerificationEmail'); |
23 | 23 | |
24 | - if (! backpack_users_have_email()) { |
|
24 | + if (!backpack_users_have_email()) { |
|
25 | 25 | abort(501, trans('backpack::base.no_email_column')); |
26 | 26 | } |
27 | 27 | // where to redirect after the email is verified |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | return; |
24 | 24 | } |
25 | 25 | |
26 | - if(config('backpack.base.setup_veryfy_email_routes', false)) { |
|
26 | + if (config('backpack.base.setup_veryfy_email_routes', false)) { |
|
27 | 27 | $this->middleware('verified'); |
28 | 28 | } |
29 | 29 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | // |
36 | 36 | // It's done inside a middleware closure in order to have |
37 | 37 | // the complete request inside the CrudPanel object. |
38 | - $this->middleware(function ($request, $next) { |
|
38 | + $this->middleware(function($request, $next) { |
|
39 | 39 | $this->crud = app('crud'); |
40 | 40 | |
41 | 41 | $this->crud->setRequest($request); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | protected function setupConfigurationForCurrentOperation() |
100 | 100 | { |
101 | 101 | $operationName = $this->crud->getCurrentOperation(); |
102 | - if (! $operationName) { |
|
102 | + if (!$operationName) { |
|
103 | 103 | return; |
104 | 104 | } |
105 | 105 |