| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 14 | class AudioAlbumController extends AlbumController | ||
| 15 | { | ||
| 16 | /** | ||
| 17 | * Returns the name of the AudioAlbum model. | ||
| 18 | * | ||
| 19 | * @return string | ||
| 20 | */ | ||
| 21 | protected function getModelName():string | ||
| 22 |     { | ||
| 23 | return AudioAlbum::class; | ||
| 24 | } | ||
| 25 | |||
| 26 | /** | ||
| 27 | * Returns the type of audio album. | ||
| 28 | * | ||
| 29 | * @return string | ||
| 30 | */ | ||
| 31 | protected function getAlbumType():string | ||
| 34 | } | ||
| 35 | } | ||
| 36 |