We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd1ae5 commit 787c7d4Copy full SHA for 787c7d4
src/Caching/Cache.php
@@ -88,7 +88,7 @@ public function load($key, callable $generator = null)
88
$storageKey = $this->generateKey($key);
89
$data = $this->storage->read($storageKey);
90
if ($data === null && $generator) {
91
- $this->storage->lock($storageKey);
+ $this->storage->lock($storageKey);
92
try {
93
$data = $generator(...[&$dependencies]);
94
} catch (\Throwable $e) {
0 commit comments