Merge pull request #38955 from nextcloud/bugfix/noid/dont-use-or

fix(eventdispatcher): Don't use all evaluating "or"
This commit is contained in:
Joas Schilling 2023-07-05 14:40:10 +02:00 committed by GitHub
commit 75a15dcfe4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ class EventDispatcher implements IEventDispatcher {
// inject the event dispatcher into the logger
// this is done here because there is a cyclic dependency between the event dispatcher and logger
if ($this->logger instanceof Log or $this->logger instanceof Log\PsrLoggerAdapter) {
if ($this->logger instanceof Log || $this->logger instanceof Log\PsrLoggerAdapter) {
$this->logger->setEventDispatcher($this);
}
}