| 1 | <?php |
||
| 11 | abstract class ScalarPluginBase extends PluginBase implements TypeSystemPluginInterface { |
||
| 12 | use CacheablePluginTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | public static function createInstance(PluggableSchemaBuilder $builder, $definition, $id) { |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function getDefinition() { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param mixed $value |
||
| 37 | */ |
||
| 38 | public static function serialize($value) { |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param mixed $value |
||
| 44 | * |
||
| 45 | * @return mixed |
||
| 46 | */ |
||
| 47 | public static function parseValue($value) { |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param mixed $node |
||
| 53 | * |
||
| 54 | * @return mixed |
||
| 55 | */ |
||
| 56 | public static function parseLiteral($node) { |
||
| 59 | |||
| 60 | } |
||
| 61 |