Optimized Template Management and implemented TemplateNameService

This commit is contained in:
Kevin Frantz
2019-02-15 16:55:49 +01:00
parent b0d57e41f3
commit 3e1590ffbf
13 changed files with 301 additions and 28 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Domain\ViewManagement;
use FOS\RestBundle\View\View;
use App\Domain\ActionManagement\ActionServiceInterface;
/**
* @author kevinfrantz
@@ -13,4 +14,14 @@ interface ViewBuilderInterface
* @return View
*/
public function getView(): View;
/**
* @return ActionServiceInterface
*/
public function getActionService(): ActionServiceInterface;
/**
* Builds the view.
*/
public function build(): void;
}