1 | <?php |
||
9 | class NullCacheStrategy implements CacheStrategyInterface |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @inheritDoc |
||
14 | */ |
||
15 | 2 | public function fetch(RequestInterface $request) |
|
19 | |||
20 | /** |
||
21 | * @inheritDoc |
||
22 | */ |
||
23 | 2 | public function cache(RequestInterface $request, ResponseInterface $response) |
|
27 | |||
28 | /** |
||
29 | * @inheritDoc |
||
30 | */ |
||
31 | public function update(RequestInterface $request, ResponseInterface $response) |
||
35 | } |
||
36 |