add spaces around operators

Signed-off-by: Tobias Assmann <tobias.assmann@ecsec.de>
pull/29131/head
Tobias Assmann 3 years ago committed by Julius Härtl
parent 3dc6f0671a
commit b52ebf5224
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF

@ -49,7 +49,7 @@ class UserLoggedInListener implements IEventListener {
}
// prevent setting an empty pw as result of pw-less-login
if ($event->getPassword()==='') {
if ($event->getPassword() === '') {
return;
}

@ -420,7 +420,7 @@ class PublicKeyTokenProvider implements IProvider {
}
// prevent setting an empty pw as result of pw-less-login
if ($password==='') {
if ($password === '') {
return;
}

Loading…
Cancel
Save