| 1 | <?php |
||
| 8 | class InlineFragment extends Node implements SelectionInterface |
||
| 9 | { |
||
| 10 | const KIND = Node::KIND_INLINE_FRAGMENT; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Constructor. |
||
| 14 | * |
||
| 15 | * @param \Fubhy\GraphQL\Language\Node\NamedType $typeCondition |
||
| 16 | * @param \Fubhy\GraphQL\Language\Node\Directive[] $directives |
||
| 17 | * @param \Fubhy\GraphQL\Language\Node\SelectionSet $selectionSet |
||
| 18 | * @param \Fubhy\GraphQL\Language\Location $location |
||
| 19 | */ |
||
| 20 | 18 | public function __construct( |
|
| 32 | } |
||
| 33 |