| Total Complexity | 2 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class InlineFragmentNode extends AbstractNode implements FragmentNodeInterface, SelectionNodeInterface |
||
| 8 | { |
||
| 9 | use DirectivesTrait; |
||
| 10 | use TypeConditionTrait; |
||
| 11 | use SelectionSetTrait; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * InlineFragmentNode constructor. |
||
| 15 | * |
||
| 16 | * @param NamedTypeNode|null $typeCondition |
||
| 17 | * @param DirectiveNode[] $directives |
||
| 18 | * @param SelectionSetNode|null $selectionSet |
||
| 19 | * @param Location|null $location |
||
| 20 | */ |
||
| 21 | public function __construct( |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | public function toAST(): array |
||
| 48 |