| 1 | <?php |
||
| 19 | class GraphQLDateTime extends DateTimeType implements TypeSystemPluginInterface { |
||
| 20 | use PluginTrait; |
||
| 21 | use CacheablePluginTrait; |
||
| 22 | |||
| 23 | protected $format = 'Y-m-d H:i:s'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function __construct(array $configuration, $pluginId, $pluginDefinition) { |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function buildConfig(SchemaBuilderInterface $schemaManager) { |
||
| 38 | } |
||
| 39 |