Skip to content

Commit ce1089c

Browse files
committed
fix notice
1 parent f0387d3 commit ce1089c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Storage/InMemoryCollectionStorage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function add(string $key, Lock $lock): void
5757

5858
public function get(string $key): ?Lock
5959
{
60-
return $this->localStorage[$key] ?: null;
60+
return $this->localStorage[$key] ?? null;
6161
}
6262

6363
/**

0 commit comments

Comments
 (0)