Skip to content

Commit 2df6524

Browse files
committed
refactor(cache): set native type for $value in DummyHandler::save() method
1 parent ff35267 commit 2df6524

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

system/Cache/Handlers/DummyHandler.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@ public function remember(string $key, int $ttl, Closure $callback): mixed
3636
return null;
3737
}
3838

39-
/**
40-
* @param mixed $value
41-
*/
42-
public function save(string $key, $value, int $ttl = 60): bool
39+
public function save(string $key, mixed $value, int $ttl = 60): bool
4340
{
4441
return true;
4542
}

0 commit comments

Comments
 (0)