Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | public function toArray(): array |
||
47 | { |
||
48 | return [ |
||
49 | 'kind' => $this->kind, |
||
50 | 'loc' => $this->getLocationAsArray(), |
||
51 | 'alias' => $this->getAliasAsArray(), |
||
52 | 'name' => $this->getNameAsArray(), |
||
53 | 'arguments' => $this->getArgumentsAsArray(), |
||
54 | 'directives' => $this->getDirectivesAsArray(), |
||
55 | 'selectionSet' => $this->getSelectionSetAsArray(), |
||
56 | ]; |
||
59 |