Update LoginController.php

Updated if statements to match convention exactly.
This commit is contained in:
Alex Janes 2021-12-17 18:52:42 -05:00 committed by GitHub
parent 74de91c31a
commit a68ec8bb57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,8 +76,7 @@ class LoginController extends Controller
//If the environment is set to ALWAYS require SAML, go straight to the SAML route.
//We don't need to check other settings, as this should override those.
if(config('app.require_saml'))
{
if(config('app.require_saml')) {
return redirect()->route('saml.login');
}
@ -209,8 +208,7 @@ class LoginController extends Controller
public function login(Request $request)
{
//If the environment is set to ALWAYS require SAML, return access denied
if(config('app.require_saml'))
{
if(config('app.require_saml')) {
return view('errors.403');
}