* album export

This commit is contained in:
Danyi Dávid
2017-08-15 00:32:07 +02:00
parent 71253ff1ac
commit 5b04f5e222
7 changed files with 67 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Action;
use App\Service\GalleryService;
use Interop\Container\ContainerInterface;
class ExportAlbumFactory
{
public function __invoke(ContainerInterface $container)
{
$galleryService = $container->get(GalleryService::class);
return new ExportAlbumAction($galleryService);
}
}