| 1 | <?php |
||
| 10 | class TaxRecord |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $taxId = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * TaxRecord constructor. |
||
| 19 | * |
||
| 20 | * @param string $taxId |
||
| 21 | */ |
||
| 22 | public function __construct($taxId) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getTaxId() |
||
| 31 | { |
||
| 32 | return $this->taxId; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function __toString() |
||
| 42 | } |
||
| 43 |