Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct( |
||
27 | ?StringValueNode $description, |
||
28 | NameNode $name, |
||
29 | array $arguments, |
||
30 | TypeNodeInterface $type, |
||
31 | array $directives, |
||
32 | ?Location $location |
||
33 | ) { |
||
34 | parent::__construct(NodeKindEnum::FIELD_DEFINITION, $location); |
||
35 | |||
36 | $this->description = $description; |
||
37 | $this->name = $name; |
||
38 | $this->arguments = $arguments; |
||
39 | $this->type = $type; |
||
40 | $this->directives = $directives; |
||
41 | } |
||
59 |