We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0387d3 commit ce1089cCopy full SHA for ce1089c
src/Storage/InMemoryCollectionStorage.php
@@ -57,7 +57,7 @@ public function add(string $key, Lock $lock): void
57
58
public function get(string $key): ?Lock
59
{
60
- return $this->localStorage[$key] ?: null;
+ return $this->localStorage[$key] ?? null;
61
}
62
63
/**
0 commit comments