Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | trait HttpCacheAware |
||
20 | { |
||
21 | /** |
||
22 | * @var HttpKernelInterface|null |
||
23 | */ |
||
24 | private $httpCache; |
||
25 | |||
26 | /** |
||
27 | * @return HttpKernelInterface|null |
||
28 | */ |
||
29 | public function getHttpCache() |
||
30 | { |
||
31 | return $this->httpCache; |
||
32 | } |
||
33 | |||
34 | public function setHttpCache(HttpKernelInterface $httpCache) |
||
37 | } |
||
38 | } |
||
39 |