Skip to content

Commit 787c7d4

Browse files
committed
cs
1 parent 5fd1ae5 commit 787c7d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Caching/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function load($key, callable $generator = null)
8888
$storageKey = $this->generateKey($key);
8989
$data = $this->storage->read($storageKey);
9090
if ($data === null && $generator) {
91-
$this->storage->lock($storageKey);
91+
$this->storage->lock($storageKey);
9292
try {
9393
$data = $generator(...[&$dependencies]);
9494
} catch (\Throwable $e) {

0 commit comments

Comments
 (0)