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

@@ -0,0 +1,29 @@
<?php
namespace App\Domain\MVCManagement;
use FOS\RestBundle\View\View;
/**
* @author kevinfrantz
*/
final class MVCRoutineService implements MVCRoutineServiceInterface
{
/**
* {@inheritdoc}
*
* @see \App\Domain\MVCManagement\MVCRoutineServiceInterface::process()
*/
public function process(): void
{
}
/**
* {@inheritdoc}
*
* @see \App\Domain\MVCManagement\MVCRoutineServiceInterface::getView()
*/
public function getView(): View
{
}
}