infinito/application/symfony/src/Domain/MVCManagement/MVCRoutineServiceInterface.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;
}