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