mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
24 lines
379 B
PHP
24 lines
379 B
PHP
<?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;
|
|
}
|