mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-23 19:50:40 -05:00
PHP Style Change (Laravel Pint CI)
This commit is contained in:
@@ -44,7 +44,7 @@ class ApplicationController extends Controller
|
||||
$application->referrer = $request->input('referrer');
|
||||
|
||||
if (config('email-blacklist.enabled')) {
|
||||
if (! config('captcha.enabled')) {
|
||||
if (!config('captcha.enabled')) {
|
||||
$v = validator($request->all(), [
|
||||
'type' => 'required',
|
||||
'email' => [
|
||||
@@ -84,7 +84,7 @@ class ApplicationController extends Controller
|
||||
'captcha' => 'hiddencaptcha',
|
||||
]);
|
||||
}
|
||||
} elseif (! config('captcha.enabled')) {
|
||||
} elseif (!config('captcha.enabled')) {
|
||||
$v = validator($request->all(), [
|
||||
'type' => 'required',
|
||||
'email' => 'required|string|email|max:70|unique:invites|unique:users|unique:applications',
|
||||
|
||||
Reference in New Issue
Block a user