mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
30 lines
515 B
PHP
30 lines
515 B
PHP
|
<?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
|
||
|
{
|
||
|
}
|
||
|
}
|