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 | /** |
15 | 15 | * Create a new controller instance. |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | $this->middleware('signed')->only('verifyEmail'); |
23 | 23 | $this->middleware('throttle:6,1')->only('resendVerificationEmail'); |
24 | 24 | |
25 | - if (! backpack_users_have_email()) { |
|
25 | + if (!backpack_users_have_email()) { |
|
26 | 26 | abort(501, trans('backpack::base.no_email_column')); |
27 | 27 | } |
28 | 28 | // where to redirect after the email is verified |