mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-16 15:16:03 +02:00
Changed App namespace to Infinito namespace
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
use App\DBAL\Types\RESTResponseType;
|
||||
use Infinito\DBAL\Types\RESTResponseType;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
use App\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
||||
use Infinito\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -12,7 +12,7 @@ final class TemplateNameService implements TemplateNameServiceInterface
|
||||
/**
|
||||
* @var string The namespace which should be ignored
|
||||
*/
|
||||
const BASE_NAMESPACE = 'App\\Entity';
|
||||
const BASE_NAMESPACE = 'Infinito\\Entity';
|
||||
|
||||
/**
|
||||
* @var string the basic entry point for templates
|
||||
@@ -98,7 +98,7 @@ final class TemplateNameService implements TemplateNameServiceInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplateNameServiceInterface::getAtomTemplateName()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplateNameServiceInterface::getAtomTemplateName()
|
||||
*/
|
||||
public function getAtomTemplateName(): string
|
||||
{
|
||||
@@ -108,7 +108,7 @@ final class TemplateNameService implements TemplateNameServiceInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplateNameServiceInterface::getMoleculeTemplateName()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplateNameServiceInterface::getMoleculeTemplateName()
|
||||
*/
|
||||
public function getMoleculeTemplateName(): string
|
||||
{
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
use App\Domain\FormManagement\FormMetaInformation;
|
||||
use Infinito\Domain\FormManagement\FormMetaInformation;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -57,7 +57,7 @@ final class TemplatePathFormAndView implements TemplatePathFormAndViewInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathFormAndViewInterface::getForm()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplatePathFormAndViewInterface::getForm()
|
||||
*/
|
||||
public function getForm(): TemplatePathInformationInterface
|
||||
{
|
||||
@@ -67,7 +67,7 @@ final class TemplatePathFormAndView implements TemplatePathFormAndViewInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathFormAndViewInterface::getView()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplatePathFormAndViewInterface::getView()
|
||||
*/
|
||||
public function getView(): TemplatePathInformation
|
||||
{
|
||||
@@ -77,7 +77,7 @@ final class TemplatePathFormAndView implements TemplatePathFormAndViewInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\ReloadTypeInterface::reloadType()
|
||||
* @see \Infinito\Domain\TemplateManagement\ReloadTypeInterface::reloadType()
|
||||
*/
|
||||
public function reloadType(string $type): void
|
||||
{
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
use App\DBAL\Types\RESTResponseType;
|
||||
use Infinito\DBAL\Types\RESTResponseType;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -91,7 +91,7 @@ final class TemplatePathInformation implements TemplatePathInformationInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::getAtomTemplatePath()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplatePathInformationInterface::getAtomTemplatePath()
|
||||
*/
|
||||
public function getAtomTemplatePath(): string
|
||||
{
|
||||
@@ -101,7 +101,7 @@ final class TemplatePathInformation implements TemplatePathInformationInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::getMoleculeTemplatePath()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplatePathInformationInterface::getMoleculeTemplatePath()
|
||||
*/
|
||||
public function getMoleculeTemplatePath(): string
|
||||
{
|
||||
@@ -111,7 +111,7 @@ final class TemplatePathInformation implements TemplatePathInformationInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::reloadType()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplatePathInformationInterface::reloadType()
|
||||
*/
|
||||
public function reloadType(string $type): void
|
||||
{
|
||||
@@ -122,7 +122,7 @@ final class TemplatePathInformation implements TemplatePathInformationInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::getCrud()
|
||||
* @see \Infinito\Domain\TemplateManagement\TemplatePathInformationInterface::getCrud()
|
||||
*/
|
||||
public function getCrud(): string
|
||||
{
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
namespace Infinito\Domain\TemplateManagement;
|
||||
|
||||
use App\DBAL\Types\RESTResponseType;
|
||||
use Infinito\DBAL\Types\RESTResponseType;
|
||||
|
||||
/**
|
||||
* Manages all informations which are needed to process templates.
|
||||
|
Reference in New Issue
Block a user