| 1 | <?php |
||
| 25 | class Phone implements ModelInterface |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $phoneNumber; |
||
| 31 | /** |
||
| 32 | * @var integer |
||
| 33 | */ |
||
| 34 | private $accountIndex; |
||
| 35 | |||
| 36 | 2 | public function __construct(string $phoneNumber, int $accountIndex = 1) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @return MyXML |
||
| 44 | */ |
||
| 45 | 2 | public function getXml(): MyXML |
|
| 54 | |||
| 55 | } |
||
| 56 |