Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | public function toArray(): array |
||
51 | { |
||
52 | return [ |
||
53 | 'kind' => $this->kind, |
||
54 | 'description' => $this->getDescriptionAsArray(), |
||
55 | 'name' => $this->getNameAsArray(), |
||
56 | 'arguments' => $this->getArgumentsAsArray(), |
||
57 | 'locations' => $this->getLocationsAsArray(), |
||
58 | 'loc' => $this->getLocationAsArray(), |
||
59 | ]; |
||
62 |