Skip to content

Commit 35cb5bf

Browse files
committed
style: fix code style
1 parent 2e83033 commit 35cb5bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

system/Cache/CacheInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ public function get(string $key): mixed;
3939
* @return bool Success or failure
4040
*/
4141
public function save(string $key, mixed $value, int $ttl = 60): bool;
42-
42+
4343
/**
4444
* Attempts to get an item from the cache, or executes the callback
4545
* and stores the result on cache miss.
4646
*
47-
* @param string $key Cache item name
48-
* @param int $ttl Time To Live, in seconds
47+
* @param string $key Cache item name
48+
* @param int $ttl Time To Live, in seconds
4949
* @param Closure(): mixed $callback Callback executed on cache miss
5050
*/
5151
public function remember(string $key, int $ttl, Closure $callback): mixed;

0 commit comments

Comments
 (0)