1 | <?php |
||
12 | class NULLRepository implements WritableRepository |
||
13 | { |
||
14 | use Repository\Capability\Notify; |
||
15 | use Repository\Capability\PropertySearchByIteration; |
||
16 | |||
17 | /** |
||
18 | * {@inheritDoc} |
||
19 | */ |
||
20 | public function getByCodepoint(Codepoint $codepoint) |
||
24 | |||
25 | /** |
||
26 | * {@inheritDoc} |
||
27 | */ |
||
28 | public function getByCodepoints(Codepoint\Collection $codepoints) |
||
32 | |||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | */ |
||
36 | public function addMany(CharacterCollection $characters) |
||
40 | |||
41 | /** |
||
42 | * {@inheritDoc} |
||
43 | */ |
||
44 | public function getAll() |
||
48 | |||
49 | /** |
||
50 | * {@inheritDoc} |
||
51 | */ |
||
52 | public function count() |
||
56 | } |