20 lines
484 B
PHP
20 lines
484 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\AlbumSources;
|
||
|
|
||
|
use App\Album;
|
||
|
use App\Photo;
|
||
|
use Symfony\Component\HttpFoundation\File\File;
|
||
|
|
||
|
interface IAlbumSource
|
||
|
{
|
||
|
function getPathToPhoto(Album $album, Photo $photo);
|
||
|
|
||
|
/**
|
||
|
* Saves an uploaded file to the container and returns the filename.
|
||
|
* @param Album $album The album containing the photo
|
||
|
* @param File $uploadedFile The photo uploaded
|
||
|
* @return File
|
||
|
*/
|
||
|
function saveUploadedPhoto(Album $album, File $uploadedFile);
|
||
|
}
|