Total Complexity | 5 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | abstract class Memory |
||
22 | { |
||
23 | use Properties, Prefixed, Storage, Delegate; |
||
24 | |||
25 | /** |
||
26 | * Memory constructor. |
||
27 | * @param Refreshing $refresher |
||
28 | * @param Eviction $eviction |
||
29 | */ |
||
30 | final public function __construct(Refreshing $refresher, Eviction $eviction) |
||
37 | ; |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | */ |
||
42 | final public function __destruct() |
||
49 |