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

@@ -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