mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2024-12-04 23:17:19 +01:00
Renamed domain LayerManagement to Layer
This commit is contained in:
parent
592f7551a3
commit
fd4093f270
@ -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"
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
{
|
@ -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.
|
@ -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;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Domain\LayerManagement;
|
||||
namespace Infinito\Domain\Layer;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Domain\LayerManagement;
|
||||
namespace Infinito\Domain\Layer;
|
||||
|
||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Domain\LayerManagement;
|
||||
namespace Infinito\Domain\Layer;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
/**
|
@ -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
|
@ -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;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user