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