mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
Renamed domain LayerManagement to Layer
This commit is contained in:
parent
592f7551a3
commit
fd4093f270
@ -4,7 +4,7 @@ twig:
|
|||||||
strict_variables: '%kernel.debug%'
|
strict_variables: '%kernel.debug%'
|
||||||
form_themes: ['bootstrap_4_layout.html.twig']
|
form_themes: ['bootstrap_4_layout.html.twig']
|
||||||
globals:
|
globals:
|
||||||
layer_action_map: "@Infinito\\Domain\\LayerManagement\\LayerActionMap"
|
layer_action_map: "@Infinito\\Domain\\Layer\\LayerActionMap"
|
||||||
requested_action_service: "@Infinito\\Domain\\RequestManagement\\Action\\RequestedActionService"
|
requested_action_service: "@Infinito\\Domain\\RequestManagement\\Action\\RequestedActionService"
|
||||||
action_icon_class_map: "@Infinito\\Domain\\TwigManagement\\ActionIconClassMap"
|
action_icon_class_map: "@Infinito\\Domain\\TwigManagement\\ActionIconClassMap"
|
||||||
layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap"
|
layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap"
|
||||||
|
@ -6,7 +6,7 @@ use Infinito\Entity\EntityInterface;
|
|||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
use Infinito\Domain\RequestManagement\Entity\RequestedEntityServiceInterface;
|
use Infinito\Domain\RequestManagement\Entity\RequestedEntityServiceInterface;
|
||||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
use Infinito\Domain\LayerManagement\LayerInterfaceMap;
|
use Infinito\Domain\Layer\LayerInterfaceMap;
|
||||||
use FOS\UserBundle\Model\UserInterface;
|
use FOS\UserBundle\Model\UserInterface;
|
||||||
use Infinito\Exception\Core\NotCorrectInstanceCoreException;
|
use Infinito\Exception\Core\NotCorrectInstanceCoreException;
|
||||||
use Infinito\Domain\MethodManagement\MethodPrefixType;
|
use Infinito\Domain\MethodManagement\MethodPrefixType;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\LayerManagement;
|
namespace Infinito\Domain\Layer;
|
||||||
|
|
||||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
use Infinito\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
@ -27,7 +27,7 @@ final class LayerActionMap extends AbstractMap implements LayerActionMapInterfac
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\LayerManagement\LayerActionMapInterface::getLayers()
|
* @see \Infinito\Domain\Layer\LayerActionMapInterface::getLayers()
|
||||||
*/
|
*/
|
||||||
public static function getLayers(string $action): array
|
public static function getLayers(string $action): array
|
||||||
{
|
{
|
||||||
@ -37,7 +37,7 @@ final class LayerActionMap extends AbstractMap implements LayerActionMapInterfac
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\LayerManagement\LayerActionMapInterface::getActions()
|
* @see \Infinito\Domain\Layer\LayerActionMapInterface::getActions()
|
||||||
*/
|
*/
|
||||||
public static function getActions(string $layer): array
|
public static function getActions(string $layer): array
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\LayerManagement;
|
namespace Infinito\Domain\Layer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This LayerActionMap offers the possibility, to see which Action\Layer-Cobinations are possible.
|
* This LayerActionMap offers the possibility, to see which Action\Layer-Cobinations are possible.
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\LayerManagement;
|
namespace Infinito\Domain\Layer;
|
||||||
|
|
||||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
use Infinito\Entity\Source\AbstractSource;
|
use Infinito\Entity\Source\AbstractSource;
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\LayerManagement;
|
namespace Infinito\Domain\Layer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\LayerManagement;
|
namespace Infinito\Domain\Layer;
|
||||||
|
|
||||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\LayerManagement;
|
namespace Infinito\Domain\Layer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
@ -4,7 +4,7 @@ namespace Infinito\Domain\RepositoryManagement;
|
|||||||
|
|
||||||
use Infinito\Repository\RepositoryInterface;
|
use Infinito\Repository\RepositoryInterface;
|
||||||
use Doctrine\ORM\EntityManagerInterface;
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
use Infinito\Domain\LayerManagement\LayerClassMap;
|
use Infinito\Domain\Layer\LayerClassMap;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -6,7 +6,7 @@ use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|||||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
use Infinito\DBAL\Types\RESTResponseType;
|
use Infinito\DBAL\Types\RESTResponseType;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Infinito\Domain\LayerManagement\LayerActionMap;
|
use Infinito\Domain\Layer\LayerActionMap;
|
||||||
use Infinito\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
use Infinito\Domain\MapManagement\ActionHttpMethodMap;
|
use Infinito\Domain\MapManagement\ActionHttpMethodMap;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
@ -8,7 +8,7 @@ use Infinito\Domain\Action\ActionDependenciesDAOServiceInterface;
|
|||||||
use Infinito\Domain\Action\ActionInterface;
|
use Infinito\Domain\Action\ActionInterface;
|
||||||
use Infinito\Domain\RequestManagement\Action\RequestedAction;
|
use Infinito\Domain\RequestManagement\Action\RequestedAction;
|
||||||
use Infinito\Domain\RequestManagement\Right\RequestedRight;
|
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\RequestManagement\User\RequestedUser;
|
||||||
use Infinito\Domain\UserManagement\UserSourceDirectorInterface;
|
use Infinito\Domain\UserManagement\UserSourceDirectorInterface;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace tests\Unit\Domain\LayerManagement;
|
namespace tests\Unit\Domain\Layer;
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Infinito\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
use Infinito\Domain\LayerManagement\LayerActionMap;
|
use Infinito\Domain\Layer\LayerActionMap;
|
||||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
|
|
||||||
/**
|
/**
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace tests\Unit\Domain\LayerManagement;
|
namespace tests\Unit\Domain\Layer;
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Infinito\Domain\LayerManagement\LayerInterfaceMap;
|
use Infinito\Domain\Layer\LayerInterfaceMap;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
@ -6,7 +6,7 @@ use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|||||||
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||||
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryService;
|
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryService;
|
||||||
use Infinito\Repository\RepositoryInterface;
|
use Infinito\Repository\RepositoryInterface;
|
||||||
use Infinito\Domain\LayerManagement\LayerClassMap;
|
use Infinito\Domain\Layer\LayerClassMap;
|
||||||
use Infinito\Exception\Collection\NotSetElementException;
|
use Infinito\Exception\Collection\NotSetElementException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user