| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct( |
||
| 23 | ?StringValueNode $description, |
||
| 24 | NameNode $name, |
||
| 25 | array $directives, |
||
| 26 | ?Location $location |
||
| 27 | ) { |
||
| 28 | parent::__construct(NodeKindEnum::ENUM_VALUE_DEFINITION, $location); |
||
| 29 | |||
| 30 | $this->description = $description; |
||
| 31 | $this->name = $name; |
||
| 32 | $this->directives = $directives; |
||
| 33 | } |
||
| 49 |