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): Response |
||
59 | |||
60 | public function hasBeenCached(Request $request): bool |
||
66 | |||
67 | public function getCachedResponseFor(Request $request): Response |
||
71 | |||
72 | public function flush() |
||
76 | |||
77 | protected function addCachedHeader(Response $response): Response |
||
85 | } |
||
86 |
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..