1 | <?php |
||
8 | class NonNullType extends Node implements TypeInterface |
||
9 | { |
||
10 | const KIND = Node::KIND_NON_NULL_TYPE; |
||
11 | |||
12 | /** |
||
13 | * Constructor. |
||
14 | * |
||
15 | * @param \Fubhy\GraphQL\Language\Node\TypeInterface $type |
||
16 | * @param \Fubhy\GraphQL\Language\Location $location |
||
17 | */ |
||
18 | 45 | public function __construct(TypeInterface $type, Location $location = NULL) |
|
26 | } |
||
27 |