Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 4 | public function getMethods(): array |
|
23 | { |
||
24 | return [ |
||
25 | 4 | 'ping.view' => fn (): Method\V1161MethodInterface => $this->createPingMethod(), |
|
26 | 4 | 'getLicense.view' => fn (): Method\V1161MethodInterface => $this->createGetLicenseMethod(), |
|
27 | 4 | 'getArtists.view' => fn (): Method\V1161MethodInterface => $this->createGetArtistsMethod(), |
|
28 | 4 | 'getCoverArt.view' => fn (): Method\V1161MethodInterface => $this->createGetCoverArtMethod(), |
|
29 | ]; |
||
60 |