mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 17:29:04 +00:00 
			
		
		
		
	Renamed domain TwigManagement to Twig
This commit is contained in:
		| @@ -6,8 +6,8 @@ twig: | ||||
|     globals: | ||||
|         layer_action_map: "@Infinito\\Domain\\Layer\\LayerActionMap" | ||||
|         requested_action_service: "@Infinito\\Domain\\Request\\Action\\RequestedActionService" | ||||
|         action_icon_class_map: "@Infinito\\Domain\\TwigManagement\\ActionIconClassMap" | ||||
|         layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap" | ||||
|         action_icon_class_map: "@Infinito\\Domain\\Twig\\ActionIconClassMap" | ||||
|         layer_icon_class_map: "@Infinito\\Domain\\Twig\\LayerIconClassMap" | ||||
|         action_template_name_service: "@Infinito\\Domain\\Template\\ActionTemplateNameServiceInterface" | ||||
|         # @todo rename variable | ||||
|         action_template_data_store_service: "@Infinito\\Domain\\DataAccessManagement\\ActionsViewsDAOService" | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace Infinito\Domain\TwigManagement; | ||||
| namespace Infinito\Domain\Twig; | ||||
| 
 | ||||
| use Infinito\DBAL\Types\ActionType; | ||||
| use Infinito\Exception\Collection\NotSetElementException; | ||||
| @@ -24,7 +24,7 @@ final class ActionIconClassMap implements ActionIconClassMapInterface | ||||
|     /** | ||||
|      * {@inheritdoc} | ||||
|      * | ||||
|      * @see \Infinito\Domain\TwigManagement\ActionIconClassMapInterface::getIconClass() | ||||
|      * @see \Infinito\Domain\Twig\ActionIconClassMapInterface::getIconClass() | ||||
|      */ | ||||
|     public function getIconClass(string $action): string | ||||
|     { | ||||
| @@ -1,6 +1,6 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace Infinito\Domain\TwigManagement; | ||||
| namespace Infinito\Domain\Twig; | ||||
| 
 | ||||
| /** | ||||
|  * Maps actions to classes. | ||||
| @@ -1,6 +1,6 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace Infinito\Domain\TwigManagement; | ||||
| namespace Infinito\Domain\Twig; | ||||
| 
 | ||||
| use Infinito\DBAL\Types\Meta\Right\LayerType; | ||||
| use Infinito\Exception\Collection\NotSetElementException; | ||||
| @@ -25,7 +25,7 @@ final class LayerIconClassMap implements LayerIconClassMapInterface | ||||
|     /** | ||||
|      * {@inheritdoc} | ||||
|      * | ||||
|      * @see \Infinito\Domain\TwigManagement\LayerIconClassMapInterface::getIconClass() | ||||
|      * @see \Infinito\Domain\Twig\LayerIconClassMapInterface::getIconClass() | ||||
|      */ | ||||
|     public static function getIconClass(string $layer): string | ||||
|     { | ||||
| @@ -1,6 +1,6 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace Infinito\Domain\TwigManagement; | ||||
| namespace Infinito\Domain\Twig; | ||||
| 
 | ||||
| /** | ||||
|  * Maps actions to classes. | ||||
| @@ -1,10 +1,10 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace tests\Unit\Domain\TwigManagement; | ||||
| namespace tests\Unit\Domain\Twig; | ||||
| 
 | ||||
| use PHPUnit\Framework\TestCase; | ||||
| use Infinito\Domain\TwigManagement\ActionIconClassMapInterface; | ||||
| use Infinito\Domain\TwigManagement\ActionIconClassMap; | ||||
| use Infinito\Domain\Twig\ActionIconClassMapInterface; | ||||
| use Infinito\Domain\Twig\ActionIconClassMap; | ||||
| use Infinito\DBAL\Types\ActionType; | ||||
| use Infinito\Exception\Collection\NotSetElementException; | ||||
| 
 | ||||
| @@ -1,9 +1,9 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace tests\Unit\Domain\TwigManagement; | ||||
| namespace tests\Unit\Domain\Twig; | ||||
| 
 | ||||
| use PHPUnit\Framework\TestCase; | ||||
| use Infinito\Domain\TwigManagement\LayerIconClassMap; | ||||
| use Infinito\Domain\Twig\LayerIconClassMap; | ||||
| use Infinito\DBAL\Types\Meta\Right\LayerType; | ||||
| use Infinito\Exception\Collection\NotSetElementException; | ||||
| 
 | ||||
		Reference in New Issue
	
	Block a user