| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct(BookId $id, AuthorId $authorId, string $title) |
||
| 23 | { |
||
| 24 | $this->id = (string) $id; |
||
| 25 | $this->authorId = (string) $authorId; |
||
| 26 | $this->title = $title; |
||
| 27 | $this->createdAt = new DateTimeImmutable(); |
||
| 28 | |||
| 29 | $this->record(new BookCreated($id, $authorId, $title, $this->createdAt)); |
||
| 30 | } |
||
| 52 |