| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 18 | class AmpachePreferences { |
||
| 19 | |||
| 20 | private const SETTINGS = [ |
||
| 21 | [ |
||
| 22 | 'id' => 122, |
||
| 23 | 'name' => 'album_release_type', |
||
| 24 | 'level' => 100, |
||
| 25 | 'description' => 'Album - Group per release type', |
||
| 26 | 'value' => '0', |
||
| 27 | 'type' => 'boolean', |
||
| 28 | 'category' => 'interface', |
||
| 29 | 'subcategory' => 'library' |
||
| 30 | ], |
||
| 31 | [ |
||
| 32 | 'id' => 130, |
||
| 33 | 'name' => 'album_release_type_sort', |
||
| 34 | 'level' => 100, |
||
| 35 | 'description' => 'Album - Group per release type sort', |
||
| 36 | 'value' => 'album,ep,live,single', |
||
| 37 | 'type' => 'string', |
||
| 38 | 'category' => 'interface', |
||
| 39 | 'subcategory' => 'library' |
||
| 40 | ] |
||
| 41 | ]; |
||
| 42 | |||
| 43 | public static function getAll() : array { |
||
| 45 | } |
||
| 46 | |||
| 47 | public static function get(string $name) : ?array { |
||
| 49 | } |
||
| 50 | } |