1 | <?php |
||
20 | class DateAttributeType implements AttributeTypeInterface |
||
21 | { |
||
22 | const TYPE = 'date'; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function getStorageType() |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function getType() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function validate(AttributeValueInterface $attributeValue, ExecutionContextInterface $context, array $configuration) { } |
||
44 | } |
||
45 |