Fix code style in AuthChain

refs #9660
This commit is contained in:
Eric Lippmann 2015-07-28 19:55:26 +02:00
parent 07849e0fea
commit 2a4e614b5e

View File

@ -94,7 +94,7 @@ class AuthChain implements Iterator
}
$backendConfig = $this->config->current();
if ((bool) $backendConfig->get('disabled', false) === true) {
if ((bool) $backendConfig->get('disabled', false)) {
$this->next();
return $this->valid();
}