Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | public function toAST(): array |
||
47 | { |
||
48 | return [ |
||
49 | 'kind' => $this->kind, |
||
50 | 'description' => $this->getDescriptionAST(), |
||
51 | 'name' => $this->getNameAST(), |
||
52 | 'interfaces' => $this->getInterfacesAST(), |
||
53 | 'directives' => $this->getDirectivesAST(), |
||
54 | 'fields' => $this->getFieldsAST(), |
||
55 | 'loc' => $this->getLocationAST(), |
||
56 | ]; |
||
59 |