Renamed domain LayerManagement to Layer

This commit is contained in:
Kevin Frantz 2019-05-30 16:18:10 +02:00
parent 592f7551a3
commit fd4093f270
14 changed files with 18 additions and 18 deletions

View File

@ -4,7 +4,7 @@ twig:
strict_variables: '%kernel.debug%'
form_themes: ['bootstrap_4_layout.html.twig']
globals:
layer_action_map: "@Infinito\\Domain\\LayerManagement\\LayerActionMap"
layer_action_map: "@Infinito\\Domain\\Layer\\LayerActionMap"
requested_action_service: "@Infinito\\Domain\\RequestManagement\\Action\\RequestedActionService"
action_icon_class_map: "@Infinito\\Domain\\TwigManagement\\ActionIconClassMap"
layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap"

View File

@ -6,7 +6,7 @@ use Infinito\Entity\EntityInterface;
use Doctrine\Common\Collections\Collection;
use Infinito\Domain\RequestManagement\Entity\RequestedEntityServiceInterface;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\Domain\LayerManagement\LayerInterfaceMap;
use Infinito\Domain\Layer\LayerInterfaceMap;
use FOS\UserBundle\Model\UserInterface;
use Infinito\Exception\Core\NotCorrectInstanceCoreException;
use Infinito\Domain\MethodManagement\MethodPrefixType;

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\LayerManagement;
namespace Infinito\Domain\Layer;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\DBAL\Types\ActionType;
@ -27,7 +27,7 @@ final class LayerActionMap extends AbstractMap implements LayerActionMapInterfac
/**
* {@inheritdoc}
*
* @see \Infinito\Domain\LayerManagement\LayerActionMapInterface::getLayers()
* @see \Infinito\Domain\Layer\LayerActionMapInterface::getLayers()
*/
public static function getLayers(string $action): array
{
@ -37,7 +37,7 @@ final class LayerActionMap extends AbstractMap implements LayerActionMapInterfac
/**
* {@inheritdoc}
*
* @see \Infinito\Domain\LayerManagement\LayerActionMapInterface::getActions()
* @see \Infinito\Domain\Layer\LayerActionMapInterface::getActions()
*/
public static function getActions(string $layer): array
{

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\LayerManagement;
namespace Infinito\Domain\Layer;
/**
* This LayerActionMap offers the possibility, to see which Action\Layer-Cobinations are possible.

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\LayerManagement;
namespace Infinito\Domain\Layer;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\Entity\Source\AbstractSource;

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\LayerManagement;
namespace Infinito\Domain\Layer;
/**
* @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\LayerManagement;
namespace Infinito\Domain\Layer;
use Infinito\DBAL\Types\Meta\Right\LayerType;

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\LayerManagement;
namespace Infinito\Domain\Layer;
/**
* @author kevinfrantz

View File

@ -4,7 +4,7 @@ namespace Infinito\Domain\RepositoryManagement;
use Infinito\Repository\RepositoryInterface;
use Doctrine\ORM\EntityManagerInterface;
use Infinito\Domain\LayerManagement\LayerClassMap;
use Infinito\Domain\Layer\LayerClassMap;
/**
* @author kevinfrantz

View File

@ -6,7 +6,7 @@ use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\DBAL\Types\RESTResponseType;
use Symfony\Component\HttpFoundation\Request;
use Infinito\Domain\LayerManagement\LayerActionMap;
use Infinito\Domain\Layer\LayerActionMap;
use Infinito\DBAL\Types\ActionType;
use Infinito\Domain\MapManagement\ActionHttpMethodMap;
use Symfony\Component\HttpFoundation\Response;

View File

@ -8,7 +8,7 @@ use Infinito\Domain\Action\ActionDependenciesDAOServiceInterface;
use Infinito\Domain\Action\ActionInterface;
use Infinito\Domain\RequestManagement\Action\RequestedAction;
use Infinito\Domain\RequestManagement\Right\RequestedRight;
use Infinito\Domain\LayerManagement\LayerActionMap;
use Infinito\Domain\Layer\LayerActionMap;
use Infinito\Domain\RequestManagement\User\RequestedUser;
use Infinito\Domain\UserManagement\UserSourceDirectorInterface;

View File

@ -1,10 +1,10 @@
<?php
namespace tests\Unit\Domain\LayerManagement;
namespace tests\Unit\Domain\Layer;
use PHPUnit\Framework\TestCase;
use Infinito\DBAL\Types\ActionType;
use Infinito\Domain\LayerManagement\LayerActionMap;
use Infinito\Domain\Layer\LayerActionMap;
use Infinito\DBAL\Types\Meta\Right\LayerType;
/**

View File

@ -1,9 +1,9 @@
<?php
namespace tests\Unit\Domain\LayerManagement;
namespace tests\Unit\Domain\Layer;
use PHPUnit\Framework\TestCase;
use Infinito\Domain\LayerManagement\LayerInterfaceMap;
use Infinito\Domain\Layer\LayerInterfaceMap;
/**
* @author kevinfrantz

View File

@ -6,7 +6,7 @@ use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryService;
use Infinito\Repository\RepositoryInterface;
use Infinito\Domain\LayerManagement\LayerClassMap;
use Infinito\Domain\Layer\LayerClassMap;
use Infinito\Exception\Collection\NotSetElementException;
/**