Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 18 | public function __construct( |
|
21 | NamedType $typeCondition, |
||
22 | array $directives = [], |
||
23 | SelectionSet $selectionSet, |
||
24 | Location $location = NULL |
||
25 | ) { |
||
26 | 18 | parent::__construct($location, [ |
|
27 | 18 | 'typeCondition' => $typeCondition, |
|
28 | 18 | 'directives' => $directives, |
|
29 | 18 | 'selectionSet' => $selectionSet, |
|
30 | 18 | ]); |
|
31 | 18 | } |
|
32 | } |
||
33 |