Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class NullEntityPrefetcher implements EntityPrefetcher { |
||
18 | |||
19 | /** |
||
20 | * Prefetches data for a list of entity ids. |
||
21 | * |
||
22 | * @param EntityId[] $entityIds |
||
23 | */ |
||
24 | public function prefetch( array $entityIds ) { |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Purges prefetched data about a given entity. |
||
29 | */ |
||
30 | public function purge( EntityId $entityId ) { |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Purges all prefetched data. |
||
35 | */ |
||
36 | public function purgeAll() { |
||
37 | } |
||
38 | |||
39 | } |
||
40 |