1 | <?php |
||
14 | class BaseType |
||
15 | { |
||
16 | /** |
||
17 | * BaseType constructor. |
||
18 | * @param array $data |
||
19 | */ |
||
20 | public function __construct($data) |
||
41 | |||
42 | /** |
||
43 | * @param $data |
||
44 | * @return static |
||
45 | */ |
||
46 | public static function create($data) |
||
50 | |||
51 | /** |
||
52 | * @param $json |
||
53 | * @return static |
||
54 | */ |
||
55 | public static function createFromJson($json) |
||
59 | } |