Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class InputObjectTypeExtensionNode extends AbstractNode implements TypeExtensionNodeInterface, DirectivesAwareInterface, |
||
8 | NameAwareInterface |
||
9 | { |
||
10 | use NameTrait; |
||
11 | use DirectivesTrait; |
||
12 | use InputFieldsTrait; |
||
13 | |||
14 | /** |
||
15 | * InputObjectTypeExtensionNode constructor. |
||
16 | * |
||
17 | * @param NameNode $name |
||
18 | * @param DirectiveNode[] $directives |
||
19 | * @param InputValueDefinitionNode[] $fields |
||
20 | * @param Location|null $location |
||
21 | */ |
||
22 | public function __construct( |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | public function toAST(): array |
||
49 |