| 1 | <?php |
||
| 16 | class XmlConvertibleObject implements XmlConvertibleInterface |
||
| 17 | { |
||
| 18 | use XmlConvertible { |
||
| 19 | getXmlProperties as protected traitXmlProperties; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * XmlConvertibleObject constructor. |
||
| 24 | * @param string $xmlElementName |
||
| 25 | * @param array $xmlChildren |
||
| 26 | */ |
||
| 27 | 5 | public function __construct(string $xmlElementName = null, array $xmlChildren = null) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | 5 | public function getXmlProperties(): array |
|
| 40 | } |