1 | <?php |
||
10 | class LocalBookRepository implements BookRepository |
||
11 | { |
||
12 | /** @var FileRepository */ |
||
13 | private $file; |
||
14 | |||
15 | public function clear() |
||
19 | |||
20 | /** {@inheritdoc} */ |
||
21 | public function save(Book $book) |
||
25 | |||
26 | /** {@inheritdoc} */ |
||
27 | public function getAll() |
||
31 | |||
32 | public function __construct() |
||
36 | } |
||
37 |