Skip to content

Commit 5e83499

Browse files
authored
Merge pull request #11 from abrouter/update-kv-storage
Fix kvStorage
2 parents e48a5d5 + 1542dc0 commit 5e83499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridge/KvStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ public function remove(string $key): void
2020

2121
public function get(string $key)
2222
{
23-
Cache::store()->get($key);
23+
return Cache::store()->get($key);
2424
}
2525
}

0 commit comments

Comments
 (0)