Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
| Autor | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| getId | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace Core\Models; |
| 4 | |
| 5 | class Autor |
| 6 | { |
| 7 | public \DateTimeImmutable $created_at; |
| 8 | public \DateTime $updated_at; |
| 9 | |
| 10 | public function __construct( |
| 11 | private ?int $id = null, |
| 12 | public string $nome, |
| 13 | ) {} |
| 14 | |
| 15 | public function getId() { |
| 16 | return $this->id; |
| 17 | } |
| 18 | } |
| 19 |