1 | <?php |
||
10 | abstract class BaseCacheProfile implements CacheProfile |
||
11 | { |
||
12 | public function enabled(Request $request): bool |
||
16 | |||
17 | /* |
||
18 | * Return the time when the cache must be invalided. |
||
19 | */ |
||
20 | public function cacheRequestUntil(Request $request): DateTime |
||
26 | |||
27 | /* |
||
28 | * Set a string to add to differentiate this request from others. |
||
29 | */ |
||
30 | public function cacheNameSuffix(Request $request): string |
||
38 | |||
39 | public function isRunningInConsole(): bool |
||
47 | |||
48 | public function replacers(Request $request): array |
||
56 | } |
||
57 |