Changed App namespace to Infinito namespace

This commit is contained in:
Kevin Frantz
2019-02-17 14:33:19 +01:00
parent bf5d11a318
commit 493471df5f
424 changed files with 1488 additions and 1500 deletions

View File

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

View File

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

View File

@@ -1,12 +1,12 @@
<?php
namespace App\Domain\LayerManagement;
namespace Infinito\Domain\LayerManagement;
use App\DBAL\Types\Meta\Right\LayerType;
use App\Entity\Source\AbstractSource;
use App\Exception\NotSetException;
use App\Entity\Meta\Law;
use App\Entity\Meta\Right;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\Entity\Source\AbstractSource;
use Infinito\Exception\NotSetException;
use Infinito\Entity\Meta\Law;
use Infinito\Entity\Meta\Right;
/**
* @author kevinfrantz

View File

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