mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	Renamed domain TwigManagement to Twig
This commit is contained in:
		@@ -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"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
<?php
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace Infinito\Domain\TwigManagement;
 | 
					namespace Infinito\Domain\Twig;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Maps actions to classes.
 | 
					 * Maps actions to classes.
 | 
				
			||||||
@@ -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
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
<?php
 | 
					<?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace Infinito\Domain\TwigManagement;
 | 
					namespace Infinito\Domain\Twig;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Maps actions to classes.
 | 
					 * Maps actions to classes.
 | 
				
			||||||
@@ -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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		Reference in New Issue
	
	Block a user