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