1 | <?php |
||
15 | class CompanyData implements CompanyDataInterface |
||
16 | { |
||
17 | /** @var int */ |
||
18 | protected $id; |
||
19 | |||
20 | /** @var string */ |
||
21 | protected $name; |
||
22 | |||
23 | /** @var string */ |
||
24 | protected $vatNumber; |
||
25 | |||
26 | /** @var string */ |
||
27 | protected $street; |
||
28 | |||
29 | /** @var string */ |
||
30 | protected $city; |
||
31 | |||
32 | /** @var string */ |
||
33 | protected $postcode; |
||
34 | |||
35 | /** @var string */ |
||
36 | protected $countryCode; |
||
37 | |||
38 | /** @var string */ |
||
39 | protected $seller; |
||
40 | |||
41 | public function getId(): ?int |
||
45 | |||
46 | public function getVatNumber(): ?string |
||
50 | |||
51 | public function setVatNumber(?string $vatNumber): void |
||
55 | |||
56 | public function getName(): ?string |
||
60 | |||
61 | public function setName(?string $name): void |
||
65 | |||
66 | public function getStreet(): ?string |
||
70 | |||
71 | public function setStreet(?string $street): void |
||
75 | |||
76 | public function getCity(): ?string |
||
80 | |||
81 | public function setCity(?string $city): void |
||
85 | |||
86 | public function getPostcode(): ?string |
||
90 | |||
91 | public function setPostcode(?string $postcode): void |
||
95 | |||
96 | public function getCountryCode(): ?string |
||
100 | |||
101 | public function setCountryCode(?string $countryCode): void |
||
105 | |||
106 | public function getSeller(): ?string |
||
110 | |||
111 | public function setSeller(?string $seller): void |
||
115 | } |
||
116 |