| 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) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param mixed $value |
||
| 45 | * @return mixed |
||
| 46 | */ |
||
| 47 | public function serialize($value) |
||
| 55 | } |
||
| 56 |