| 1 | <?php |
||
| 22 | class AttributeMetadata extends PropertyMetadata implements AttributeMetadataInterface |
||
|
|
|||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | * @internal |
||
| 27 | */ |
||
| 28 | protected $dataType; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string|null |
||
| 32 | * @internal |
||
| 33 | */ |
||
| 34 | protected $datetimeFormat; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | protected $itemType; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritdoc |
||
| 43 | */ |
||
| 44 | public function getDataType() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $dataType |
||
| 51 | * @return $this |
||
| 52 | */ |
||
| 53 | public function setDataType($dataType) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @inheritdoc |
||
| 62 | */ |
||
| 63 | public function getDatetimeFormat() |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param null|string $datetimeFormat |
||
| 70 | * @return $this |
||
| 71 | */ |
||
| 72 | public function setDatetimeFormat($datetimeFormat = null) |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @inheritdoc |
||
| 81 | */ |
||
| 82 | public function getItemType() |
||
| 86 | } |