Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function toArray(): array |
||
25 | { |
||
26 | return [ |
||
27 | 'kind' => $this->kind, |
||
28 | 'loc' => $this->getLocationAsArray(), |
||
29 | 'alias' => $this->getAliasAsArray(), |
||
30 | 'name' => $this->getNameAsArray(), |
||
31 | 'arguments' => $this->getArgumentsAsArray(), |
||
32 | 'directives' => $this->getDirectivesAsArray(), |
||
33 | 'selectionSet' => $this->getSelectionSetAsArray(), |
||
34 | ]; |
||
37 |