Renamed domain MVCManagement to MVC

This commit is contained in:
Kevin Frantz 2019-05-30 16:34:51 +02:00
parent 49d085388d
commit 5a4fe18dac
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Request;
use Infinito\Controller\API\AbstractAPIController;
use Infinito\Domain\RequestManagement\Action\RequestedActionServiceInterface;
use Infinito\Domain\MVCManagement\MVCRoutineServiceInterface;
use Infinito\Domain\MVC\MVCRoutineServiceInterface;
use Infinito\DBAL\Types\ActionType;
use Infinito\Attribut\ClassAttributInterface;

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\MVCManagement;
namespace Infinito\Domain\MVC;
use FOS\RestBundle\View\View;
use Infinito\Attribut\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\MVCManagement\MVCRoutineServiceInterface::process()
* @see \Infinito\Domain\MVC\MVCRoutineServiceInterface::process()
*/
public function process(): View
{

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\MVCManagement;
namespace Infinito\Domain\MVC;
use FOS\RestBundle\View\View;
use Infinito\Attribut\ActionTypeAttributInterface;