1 | <?php |
||
16 | abstract class Property extends Config implements PropertyConfig |
||
17 | { |
||
18 | /** |
||
19 | * @param array $config |
||
20 | * @return PropertyObject |
||
21 | * @throws ClassDoesNotExistException |
||
22 | */ |
||
23 | public function toObject(array $config): PropertyObject |
||
36 | |||
37 | /** |
||
38 | * @param PropertyObject $object |
||
39 | * @return array |
||
40 | */ |
||
41 | public function toArray(PropertyObject $object): array |
||
47 | } |
||
48 |