| Total Complexity | 2 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class EnumValueDefinitionNode extends AbstractNode implements DefinitionNodeInterface, DirectivesAwareInterface, |
||
| 8 | NameAwareInterface |
||
| 9 | { |
||
| 10 | use DescriptionTrait; |
||
| 11 | use NameTrait; |
||
| 12 | use DirectivesTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * EnumValueDefinitionNode constructor. |
||
| 16 | * |
||
| 17 | * @param StringValueNode|null $description |
||
| 18 | * @param NameNode $name |
||
| 19 | * @param DirectiveNode[] $directives |
||
| 20 | * @param Location|null $location |
||
| 21 | */ |
||
| 22 | public function __construct( |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritdoc |
||
| 37 | */ |
||
| 38 | public function toAST(): array |
||
| 49 |