Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Person implements XmlConvertibleInterface |
||
8 | { |
||
9 | use XmlConvertible; |
||
10 | |||
11 | public $name; |
||
12 | |||
13 | public $surname; |
||
14 | |||
15 | public function __construct(?string $name = null, ?string $surname = null, ?array $xmlChildren = null) |
||
21 | } |
||
22 | |||
23 | public static function fromJson(string $json): Person |
||
32 | } |
||
33 | } |