Skip to content

Commit edeff0e

Browse files
authored
Update LaravelCache.php
1 parent b31475e commit edeff0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Utils/LaravelCache.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ public static function rememberForever(string $cacheKey, callable|Carbon $cacheT
5959
return LaravelCache::remember($cacheKey, $cacheTime, $callable, true);
6060
}
6161

62-
public function get(string $cacheKey): mixed
62+
public static function get(string $cacheKey): mixed
6363
{
6464
return Cache::get($cacheKey);
6565
}
6666

67-
public function forget(string $cacheKey): bool
67+
public static function forget(string $cacheKey): bool
6868
{
6969
return Cache::forget($cacheKey);
7070
}
7171

72-
public function pull(string $cacheKey): mixed
72+
public static function pull(string $cacheKey): mixed
7373
{
7474
return Cache::pull($cacheKey);
7575
}

0 commit comments

Comments
 (0)