1 | <?php declare(strict_types=1); |
||
8 | abstract class EmptyCache implements CacheInterface, EmptyResourceInterface |
||
9 | { |
||
10 | /** |
||
11 | * @return int |
||
12 | */ |
||
13 | 2 | public function repositoryId() : int |
|
17 | |||
18 | /** |
||
19 | * @return int |
||
20 | */ |
||
21 | 2 | public function size() : int |
|
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | 2 | public function slug() : string |
|
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 2 | public function branch() : string |
|
41 | |||
42 | /** |
||
43 | * @return DateTimeInterface |
||
44 | */ |
||
45 | 2 | public function lastModified() : DateTimeInterface |
|
49 | } |
||
50 |