mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2024-12-04 23:17:19 +01:00
Renamed domain TemplateManagement to Template
This commit is contained in:
parent
8b4d9f2338
commit
f06adfdc5c
@ -8,7 +8,7 @@ twig:
|
|||||||
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\\TwigManagement\\ActionIconClassMap"
|
||||||
layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap"
|
layer_icon_class_map: "@Infinito\\Domain\\TwigManagement\\LayerIconClassMap"
|
||||||
action_template_name_service: "@Infinito\\Domain\\TemplateManagement\\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"
|
||||||
# @todo Remove dom service
|
# @todo Remove dom service
|
||||||
|
@ -35,7 +35,7 @@ services:
|
|||||||
# please note that last definitions always *replace* previous ones
|
# please note that last definitions always *replace* previous ones
|
||||||
|
|
||||||
# Map Interfaces to concrete classes
|
# Map Interfaces to concrete classes
|
||||||
Infinito\Domain\TemplateManagement\TemplateNameServiceInterface: "@Infinito\\Domain\\TemplateManagement\\TemplateNameService"
|
Infinito\Domain\Template\TemplateNameServiceInterface: "@Infinito\\Domain\\Template\\TemplateNameService"
|
||||||
|
|
||||||
# Needed for integration tests
|
# Needed for integration tests
|
||||||
Infinito\Domain\Request\Entity\RequestedEntityService:
|
Infinito\Domain\Request\Entity\RequestedEntityService:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\TemplateManagement;
|
namespace Infinito\Domain\Template;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
@ -27,7 +27,7 @@ final class ActionTemplateNameService extends TemplateNameService implements Act
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\TemplateManagement\ActionTemplateNameServiceInterface::setActionType()
|
* @see \Infinito\Domain\Template\ActionTemplateNameServiceInterface::setActionType()
|
||||||
*/
|
*/
|
||||||
public function setActionType(?string $actionType): void
|
public function setActionType(?string $actionType): void
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\TemplateManagement;
|
namespace Infinito\Domain\Template;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows to manually define the action type.
|
* Allows to manually define the action type.
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\TemplateManagement;
|
namespace Infinito\Domain\Template;
|
||||||
|
|
||||||
use Infinito\Domain\Request\Action\RequestedActionServiceInterface;
|
use Infinito\Domain\Request\Action\RequestedActionServiceInterface;
|
||||||
|
|
||||||
@ -119,7 +119,7 @@ class TemplateNameService implements TemplateNameServiceInterface
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\TemplateManagement\TemplateNameServiceInterface::getAtomTemplateName()
|
* @see \Infinito\Domain\Template\TemplateNameServiceInterface::getAtomTemplateName()
|
||||||
*/
|
*/
|
||||||
public function getAtomTemplateName(): string
|
public function getAtomTemplateName(): string
|
||||||
{
|
{
|
||||||
@ -129,7 +129,7 @@ class TemplateNameService implements TemplateNameServiceInterface
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\TemplateManagement\TemplateNameServiceInterface::getMoleculeTemplateName()
|
* @see \Infinito\Domain\Template\TemplateNameServiceInterface::getMoleculeTemplateName()
|
||||||
*/
|
*/
|
||||||
public function getMoleculeTemplateName(): string
|
public function getMoleculeTemplateName(): string
|
||||||
{
|
{
|
||||||
@ -149,7 +149,7 @@ class TemplateNameService implements TemplateNameServiceInterface
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\TemplateManagement\TemplateNameServiceInterface::doesAtomTemplateExists()
|
* @see \Infinito\Domain\Template\TemplateNameServiceInterface::doesAtomTemplateExists()
|
||||||
*/
|
*/
|
||||||
public function doesAtomTemplateExist(): bool
|
public function doesAtomTemplateExist(): bool
|
||||||
{
|
{
|
||||||
@ -159,7 +159,7 @@ class TemplateNameService implements TemplateNameServiceInterface
|
|||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \Infinito\Domain\TemplateManagement\TemplateNameServiceInterface::doesMoleculeTemplateExists()
|
* @see \Infinito\Domain\Template\TemplateNameServiceInterface::doesMoleculeTemplateExists()
|
||||||
*/
|
*/
|
||||||
public function doesMoleculeTemplateExist(): bool
|
public function doesMoleculeTemplateExist(): bool
|
||||||
{
|
{
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Infinito\Domain\TemplateManagement;
|
namespace Infinito\Domain\Template;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
@ -4,7 +4,7 @@ namespace Infinito\Domain\ViewManagement;
|
|||||||
|
|
||||||
use FOS\RestBundle\View\View;
|
use FOS\RestBundle\View\View;
|
||||||
use Infinito\Domain\Action\ActionFactoryServiceInterface;
|
use Infinito\Domain\Action\ActionFactoryServiceInterface;
|
||||||
use Infinito\Domain\TemplateManagement\TemplateNameServiceInterface;
|
use Infinito\Domain\Template\TemplateNameServiceInterface;
|
||||||
use Infinito\Domain\Parameter\ValidGetParameterServiceInterface;
|
use Infinito\Domain\Parameter\ValidGetParameterServiceInterface;
|
||||||
use Infinito\Domain\Parameter\Parameter\FrameParameter;
|
use Infinito\Domain\Parameter\Parameter\FrameParameter;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace tests\Unit\Domain\TemplateManagement;
|
namespace tests\Unit\Domain\Template;
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Infinito\Domain\TemplateManagement\TemplateNameServiceInterface;
|
use Infinito\Domain\Template\TemplateNameServiceInterface;
|
||||||
use Infinito\Domain\TemplateManagement\TemplateNameService;
|
use Infinito\Domain\Template\TemplateNameService;
|
||||||
use Infinito\Domain\Request\Entity\RequestedEntityServiceInterface;
|
use Infinito\Domain\Request\Entity\RequestedEntityServiceInterface;
|
||||||
use Infinito\Domain\Request\Action\RequestedActionServiceInterface;
|
use Infinito\Domain\Request\Action\RequestedActionServiceInterface;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user