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