mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-18 08:06:03 +02:00
Renamed MVCRoutineService to CoreService
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Domain\MVC;
|
||||
namespace Infinito\Domain\Core;
|
||||
|
||||
use FOS\RestBundle\View\View;
|
||||
use Infinito\Attribut\ActionTypeAttribut;
|
||||
@@ -14,7 +14,7 @@ use Infinito\Domain\Process\ProcessServiceInterface;
|
||||
* @todo Test this class
|
||||
* @todo Rename this class and domain to something like "CoreManagement"
|
||||
*/
|
||||
final class MVCRoutineService implements MVCRoutineServiceInterface
|
||||
final class CoreService implements CoreServiceInterface
|
||||
{
|
||||
use ActionTypeAttribut;
|
||||
/**
|
||||
@@ -41,7 +41,7 @@ final class MVCRoutineService implements MVCRoutineServiceInterface
|
||||
* @todo Optimize the whole following function. It's just implemented like this for test reasons.
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \Infinito\Domain\MVC\MVCRoutineServiceInterface::process()
|
||||
* @see \Infinito\Domain\Core\CoreServiceInterface::process()
|
||||
*/
|
||||
public function process(): View
|
||||
{
|
@@ -1,16 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Domain\MVC;
|
||||
namespace Infinito\Domain\Core;
|
||||
|
||||
use FOS\RestBundle\View\View;
|
||||
use Infinito\Attribut\ActionTypeAttributInterface;
|
||||
|
||||
/**
|
||||
* This interface offers the options to process an MVC routine.
|
||||
* This interface offers the options to process an Core routine.
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface MVCRoutineServiceInterface extends ActionTypeAttributInterface
|
||||
interface CoreServiceInterface extends ActionTypeAttributInterface
|
||||
{
|
||||
/**
|
||||
* Process through the layers.
|
Reference in New Issue
Block a user