| 1 | <?php |
||
| 8 | class Document extends Node |
||
| 9 | { |
||
| 10 | const KIND = Node::KIND_DOCUMENT; |
||
| 11 | /** |
||
| 12 | * Constructor. |
||
| 13 | * |
||
| 14 | * @param \Fubhy\GraphQL\Language\Location $location |
||
| 15 | * @param \Fubhy\GraphQL\Language\Node\DefinitionInterface[] $definitions |
||
| 16 | */ |
||
| 17 | 309 | public function __construct(array $definitions, Location $location = NULL) |
|
| 21 | } |
||
| 22 |