1 | <?php |
||
11 | abstract class CustomizableEntity implements EntityInterface |
||
12 | { |
||
13 | protected $fieldList; |
||
14 | protected $custom_fields = []; |
||
15 | |||
16 | use FieldsTrait; |
||
17 | |||
18 | /** |
||
19 | * @param CustomField $field |
||
20 | */ |
||
21 | 8 | public function addCustomField(CustomField $field) |
|
25 | |||
26 | /** |
||
27 | * @return array |
||
28 | */ |
||
29 | 11 | public function get() |
|
44 | } |