| 1 | <?php |
||
| 9 | class AddBookToLibrary |
||
| 10 | { |
||
| 11 | /** @var BookRepository */ |
||
| 12 | private $books; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param BookRepository $books |
||
| 16 | */ |
||
| 17 | public function __construct(BookRepository $books) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param UuidInterface $bookId |
||
| 24 | * @param string $title |
||
| 25 | * @param string $authors |
||
| 26 | * @param string $isbn |
||
| 27 | */ |
||
| 28 | public function add(UuidInterface $bookId, $title, $authors, $isbn) |
||
| 32 | } |
||
| 33 |