Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class InterfaceTypeExtensionNode extends AbstractNode implements TypeExtensionNodeInterface |
||
12 | { |
||
13 | |||
14 | use NameTrait; |
||
15 | use DirectivesTrait; |
||
16 | use FieldsTrait; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $kind = NodeKindEnum::INTERFACE_TYPE_EXTENSION; |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function toArray(): array |
||
37 |