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