| 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) { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function getDefinition() { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param mixed $value |
||
| 35 | */ |
||
| 36 | public static function serialize($value) { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param mixed $value |
||
| 42 | * |
||
| 43 | * @return mixed |
||
| 44 | */ |
||
| 45 | public static function parseValue($value) { |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param mixed $node |
||
| 51 | * |
||
| 52 | * @return mixed |
||
| 53 | */ |
||
| 54 | public static function parseLiteral($node) { |
||
| 57 | |||
| 58 | } |
||
| 59 |