| 1 | <?php |
||
| 7 | class AddressingAccount |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | public $branch; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | public $number; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | public $type; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * This validate and return an array |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | public function toArray(): array |
||
| 27 | |||
| 28 | /** |
||
| 29 | * This function validate a Addressing Account |
||
| 30 | */ |
||
| 31 | public function validate() |
||
| 36 | } |
||
| 37 |