Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | trait LookupCached |
||
14 | { |
||
15 | /** |
||
16 | * @var Memory |
||
17 | */ |
||
18 | private $cached = null; |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $ttl = null; |
||
24 | |||
25 | /** |
||
26 | * @param Memory $storing |
||
27 | * @param int $ttl |
||
28 | * @return static |
||
29 | */ |
||
30 | public function setCaching(Memory $storing, int $ttl = 60) : self |
||
37 |