1 | <?php |
||
8 | class GraphQLFragmentNode extends \Twig_Node { |
||
9 | |||
10 | /** |
||
11 | * The fragment string. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | public $fragment = ""; |
||
16 | |||
17 | /** |
||
18 | * GraphQLFragmentNode constructor. |
||
19 | * |
||
20 | * @param string $fragment |
||
21 | * The query fragment. |
||
22 | * |
||
23 | * @throws \GraphQL\Error\SyntaxError |
||
24 | * Thrown if the GraphQL query is not valid. |
||
25 | */ |
||
26 | public function __construct($fragment) { |
||
30 | |||
31 | } |
||
32 |