Skip to content

Commit

Permalink
bot: fix cs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Jun 6, 2024
1 parent a3ec473 commit 4e307ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Persistence/IsProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private function _autoRefresh(): void
// or a RefreshObjectFailed exception when the object was deleted
$this->_refresh();
} catch (PersistenceNotAvailable|RefreshObjectFailed $e) {
if ($e instanceof RefreshObjectFailed && $e->objectWasDeleted() === false) {
if ($e instanceof RefreshObjectFailed && false === $e->objectWasDeleted()) {
throw $e;
}
}
Expand Down

0 comments on commit 4e307ca

Please sign in to comment.