Skip to content

Commit 145642f

Browse files
committed
Fix: возвращаемого значения.
1 parent c8d83e0 commit 145642f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Stores/PayloadStoreManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function store(string $identifier, $job): void
2424
public function get(string $identifier)
2525
{
2626
if (($serialized = $this->store->get($identifier)) === null) {
27-
return [];
27+
return null;
2828
}
2929

3030
return unserialize($serialized);

0 commit comments

Comments
 (0)