| 1 | <?php |
||
| 20 | class ScalarDefinition extends AbstractTypeDefinition implements ScalarDefinitionInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @return TypeInterface |
||
| 24 | */ |
||
| 25 | 1 | public static function getType(): TypeInterface |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param mixed $value |
||
| 32 | * @return mixed |
||
| 33 | */ |
||
| 34 | public function parse($value) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param mixed $value |
||
| 47 | * @return mixed |
||
| 48 | */ |
||
| 49 | public function serialize($value) |
||
| 59 | } |
||
| 60 |