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