for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Itstructure\MFUploader\controllers\album;
use Itstructure\MFUploader\models\album\OtherAlbum;
/**
* OtherAlbumController extends the base abstract AlbumController.
*
* @package Itstructure\MFUploader\controllers\album
* @author Andrey Girnik <[email protected]>
*/
class OtherAlbumController extends AlbumController
{
* Returns the name of the OtherAlbum model.
* @return string
protected function getModelName():string
return OtherAlbum::class;
}
* Returns the type of other album.
protected function getAlbumType():string
return OtherAlbum::ALBUM_TYPE_OTHER;