mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 05:47:11 +02:00
Optimized Template Management and implemented TemplateNameService
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\MVCManagement;
|
||||
|
||||
use FOS\RestBundle\View\View;
|
||||
|
||||
/**
|
||||
* This interface offers the options to process an MVC routine.
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface MVCRoutineServiceInterface
|
||||
{
|
||||
/**
|
||||
* Process the injected services.
|
||||
*/
|
||||
public function process(): void;
|
||||
|
||||
/**
|
||||
* @return View
|
||||
*/
|
||||
public function getView(): View;
|
||||
}
|
Reference in New Issue
Block a user