| 1 | <?php |
||
| 9 | abstract class CustomizableEntity extends BaseEntity |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var CustomField[] |
||
| 13 | */ |
||
| 14 | protected $custom_fields = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param CustomField $field |
||
| 18 | */ |
||
| 19 | 32 | public function addCustomField(CustomField $field) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | 46 | public function get() |
|
| 46 | } |