Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function build(array $ast): NodeInterface |
||
15 | { |
||
16 | return new InterfaceTypeDefinitionNode([ |
||
17 | 'description' => $this->buildNode($ast, 'description'), |
||
18 | 'name' => $this->buildNode($ast, 'name'), |
||
19 | 'directives' => $this->buildNodes($ast, 'directives'), |
||
20 | 'fields' => $this->buildNodes($ast, 'fields'), |
||
21 | 'location' => $this->createLocation($ast), |
||
22 | ]); |
||
33 |