Skip to content

Commit 4e307ca

Browse files
committed
bot: fix cs [skip ci]
1 parent a3ec473 commit 4e307ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Persistence/IsProxy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private function _autoRefresh(): void
125125
// or a RefreshObjectFailed exception when the object was deleted
126126
$this->_refresh();
127127
} catch (PersistenceNotAvailable|RefreshObjectFailed $e) {
128-
if ($e instanceof RefreshObjectFailed && $e->objectWasDeleted() === false) {
128+
if ($e instanceof RefreshObjectFailed && false === $e->objectWasDeleted()) {
129129
throw $e;
130130
}
131131
}

0 commit comments

Comments
 (0)