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\ImageAlbum;
/**
* ImageAlbumController extends the base abstract AlbumController.
*
* @package Itstructure\MFUploader\controllers\album
* @author Andrey Girnik <[email protected]>
*/
class ImageAlbumController extends AlbumController
{
* Returns the name of the ImageAlbum model.
* @return string
protected function getModelName():string
return ImageAlbum::class;
}
* Returns the type of image album.
protected function getAlbumType():string
return ImageAlbum::ALBUM_TYPE_IMAGE;