Changed App namespace to Infinito namespace

This commit is contained in:
Kevin Frantz
2019-02-17 14:33:19 +01:00
parent bf5d11a318
commit 493471df5f
424 changed files with 1488 additions and 1500 deletions

View File

@@ -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

View File

@@ -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
{

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Domain\TemplateManagement;
namespace Infinito\Domain\TemplateManagement;
/**
* @author kevinfrantz

View File

@@ -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
{

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Domain\TemplateManagement;
namespace Infinito\Domain\TemplateManagement;
/**
* @deprecated

View File

@@ -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
{

View File

@@ -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.