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