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