mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Optimized Template Management and implemented TemplateNameService
This commit is contained in:
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user