Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class FieldNode extends AbstractNode implements SelectionNodeInterface |
||
8 | { |
||
9 | |||
10 | use AliasTrait; |
||
11 | use NameTrait; |
||
12 | use ArgumentsTrait; |
||
13 | use DirectivesTrait; |
||
14 | use SelectionSetTrait; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $kind = NodeKindEnum::FIELD; |
||
20 | |||
21 | /** |
||
22 | * @inheritdoc |
||
23 | */ |
||
24 | public function toArray(): array |
||
37 |