1 | <?php |
||
11 | class EnumType extends AbstractEnumType implements TypeSystemPluginReferenceInterface { |
||
12 | use TypeSystemPluginReferenceTrait; |
||
13 | |||
14 | /** |
||
15 | * The associated type system plugin. |
||
16 | * |
||
17 | * @var \Drupal\graphql\Plugin\GraphQL\Enums\EnumPluginBase |
||
18 | */ |
||
19 | protected $plugin; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function __construct(EnumPluginBase $plugin, array $config = []) { |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function getValues() { |
||
35 | } |
||
36 |