1 | <?php |
||
9 | class ResponseCache |
||
10 | { |
||
11 | /** @var ResponseCache */ |
||
12 | protected $cache; |
||
13 | |||
14 | /** @var RequestHasher */ |
||
15 | protected $hasher; |
||
16 | |||
17 | /** @var CacheProfile */ |
||
18 | protected $cacheProfile; |
||
19 | |||
20 | public function __construct(ResponseCacheRepository $cache, RequestHasher $hasher, CacheProfile $cacheProfile) |
||
26 | |||
27 | public function enabled(Request $request): bool |
||
31 | |||
32 | public function shouldCache(Request $request, Response $response): bool |
||
44 | |||
45 | public function cacheResponse(Request $request, Response $response, $lifetimeInMinutes = null): Response |
||
46 | { |
||
47 | if (config('responsecache.add_cache_time_header')) { |
||
48 | $response = $this->addCachedHeader($response); |
||
49 | } |
||
50 | |||
51 | $this->cache->put( |
||
52 | $this->hasher->getHashFor($request), |
||
53 | $response, |
||
54 | ($lifetimeInMinutes) ? intval($lifetimeInMinutes) : $this->cacheProfile->cacheRequestUntil($request) |
||
55 | ); |
||
56 | |||
57 | return $response; |
||
58 | } |
||
59 | |||
60 | public function hasBeenCached(Request $request): bool |
||
66 | |||
67 | public function getCachedResponseFor(Request $request): Response |
||
71 | |||
72 | /** |
||
73 | * @deprecated Use the new clear method, this is just an alias. |
||
74 | */ |
||
75 | public function flush() |
||
79 | |||
80 | public function clear() |
||
84 | |||
85 | protected function addCachedHeader(Response $response): Response |
||
93 | } |
||
94 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..