Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
34 | abstract class TypeDefinitionNode extends TypeSystemDefinitionNode |
||
35 | { |
||
36 | /** |
||
37 | * @var TypeName |
||
38 | */ |
||
39 | public TypeName $name; |
||
40 | |||
41 | /** |
||
42 | * @var StringValue|null |
||
43 | */ |
||
44 | public ?StringValue $description = null; |
||
45 | |||
46 | /** |
||
47 | * @var DirectiveNode[] |
||
48 | */ |
||
49 | public array $directives = []; |
||
50 | |||
51 | /** |
||
52 | * TypeDefinitionNode constructor. |
||
53 | * |
||
54 | * @param TypeName $name |
||
55 | */ |
||
56 | public function __construct(TypeName $name) |
||
61 |