add spaces around operators

Signed-off-by: Tobias Assmann <tobias.assmann@ecsec.de>
This commit is contained in:
Tobias Assmann 2021-07-16 13:33:29 +02:00 committed by Julius Härtl
parent 3dc6f0671a
commit b52ebf5224
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

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