1 | <?php |
||
8 | class Cache |
||
9 | { |
||
10 | private $pool; |
||
11 | |||
12 | 9 | public function __construct(CacheItemPoolInterface $pool) |
|
16 | |||
17 | 9 | public function get($key) |
|
27 | |||
28 | 6 | public function set(Preview $preview, $expiresAt = null) |
|
38 | |||
39 | |||
40 | /** |
||
41 | * @param $expiresAt |
||
42 | * @return \DateInterval |
||
43 | */ |
||
44 | 6 | private function getExpireTime($expiresAt) |
|
52 | } |
||
53 |