| 1 | <?php |
||
| 10 | { |
||
| 11 | protected string $id; |
||
|
|
|||
| 12 | protected ?int $nbCopies = null; |
||
| 13 | protected ?int $nbReadings = null; |
||
| 14 | |||
| 15 | public function getId(): string |
||
| 16 | { |
||
| 17 | return $this->id; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getNbCopies(): ?int |
||
| 21 | { |
||
| 22 | return $this->nbCopies; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getNbReadings(): ?int |
||
| 26 | { |
||
| 27 | return $this->nbReadings; |
||
| 28 | } |
||
| 29 | } |
||
| 30 |