Renamed domain TwigManagement to Twig

This commit is contained in:
Kevin Frantz 2019-05-30 17:10:41 +02:00
parent f06adfdc5c
commit 899dede123
7 changed files with 13 additions and 13 deletions

View File

@ -6,8 +6,8 @@ twig:
globals: globals:
layer_action_map: "@Infinito\\Domain\\Layer\\LayerActionMap" layer_action_map: "@Infinito\\Domain\\Layer\\LayerActionMap"
requested_action_service: "@Infinito\\Domain\\Request\\Action\\RequestedActionService" requested_action_service: "@Infinito\\Domain\\Request\\Action\\RequestedActionService"
action_icon_class_map: "@Infinito\\Domain\\TwigManagement\\ActionIconClassMap" action_icon_class_map: "@Infinito\\Domain\\Twig\\ActionIconClassMap"
layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap" layer_icon_class_map: "@Infinito\\Domain\\Twig\\LayerIconClassMap"
action_template_name_service: "@Infinito\\Domain\\Template\\ActionTemplateNameServiceInterface" action_template_name_service: "@Infinito\\Domain\\Template\\ActionTemplateNameServiceInterface"
# @todo rename variable # @todo rename variable
action_template_data_store_service: "@Infinito\\Domain\\DataAccessManagement\\ActionsViewsDAOService" action_template_data_store_service: "@Infinito\\Domain\\DataAccessManagement\\ActionsViewsDAOService"

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Infinito\Domain\TwigManagement; namespace Infinito\Domain\Twig;
use Infinito\DBAL\Types\ActionType; use Infinito\DBAL\Types\ActionType;
use Infinito\Exception\Collection\NotSetElementException; use Infinito\Exception\Collection\NotSetElementException;
@ -24,7 +24,7 @@ final class ActionIconClassMap implements ActionIconClassMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\TwigManagement\ActionIconClassMapInterface::getIconClass() * @see \Infinito\Domain\Twig\ActionIconClassMapInterface::getIconClass()
*/ */
public function getIconClass(string $action): string public function getIconClass(string $action): string
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Infinito\Domain\TwigManagement; namespace Infinito\Domain\Twig;
/** /**
* Maps actions to classes. * Maps actions to classes.

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Infinito\Domain\TwigManagement; namespace Infinito\Domain\Twig;
use Infinito\DBAL\Types\Meta\Right\LayerType; use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\Exception\Collection\NotSetElementException; use Infinito\Exception\Collection\NotSetElementException;
@ -25,7 +25,7 @@ final class LayerIconClassMap implements LayerIconClassMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\TwigManagement\LayerIconClassMapInterface::getIconClass() * @see \Infinito\Domain\Twig\LayerIconClassMapInterface::getIconClass()
*/ */
public static function getIconClass(string $layer): string public static function getIconClass(string $layer): string
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Infinito\Domain\TwigManagement; namespace Infinito\Domain\Twig;
/** /**
* Maps actions to classes. * Maps actions to classes.

View File

@ -1,10 +1,10 @@
<?php <?php
namespace tests\Unit\Domain\TwigManagement; namespace tests\Unit\Domain\Twig;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use Infinito\Domain\TwigManagement\ActionIconClassMapInterface; use Infinito\Domain\Twig\ActionIconClassMapInterface;
use Infinito\Domain\TwigManagement\ActionIconClassMap; use Infinito\Domain\Twig\ActionIconClassMap;
use Infinito\DBAL\Types\ActionType; use Infinito\DBAL\Types\ActionType;
use Infinito\Exception\Collection\NotSetElementException; use Infinito\Exception\Collection\NotSetElementException;

View File

@ -1,9 +1,9 @@
<?php <?php
namespace tests\Unit\Domain\TwigManagement; namespace tests\Unit\Domain\Twig;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use Infinito\Domain\TwigManagement\LayerIconClassMap; use Infinito\Domain\Twig\LayerIconClassMap;
use Infinito\DBAL\Types\Meta\Right\LayerType; use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\Exception\Collection\NotSetElementException; use Infinito\Exception\Collection\NotSetElementException;