| 1 | <?php |
||
| 17 | class Invoice implements InvoiceInterface |
||
| 18 | { |
||
| 19 | /** @var int */ |
||
| 20 | protected $id; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | protected $vatNumber; |
||
| 24 | |||
| 25 | /** @var string */ |
||
| 26 | protected $path; |
||
| 27 | |||
| 28 | /** @var OrderInterface */ |
||
| 29 | protected $order; |
||
| 30 | |||
| 31 | public function getId(): ?int |
||
| 35 | |||
| 36 | public function getVatNumber(): ?string |
||
| 40 | |||
| 41 | public function setVatNumber(?string $vatNumber): void |
||
| 45 | |||
| 46 | public function getPath(): ?string |
||
| 50 | |||
| 51 | public function setPath(?string $path): void |
||
| 55 | |||
| 56 | public function getOrder(): OrderInterface |
||
| 60 | |||
| 61 | public function setOrder(?OrderInterface $order): void |
||
| 65 | } |
||
| 66 |