| 1 | <?php |
||
| 11 | class Field implements FieldInterface |
||
| 12 | { |
||
| 13 | protected $entity; |
||
| 14 | protected $config = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * {@inheritdoc} |
||
| 18 | */ |
||
| 19 | public function __construct(Entity $entity, array $config = null) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function dataToDatabase($data) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function dataFromDatabase($data) |
||
| 43 | } |
||
| 44 |