mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Changed App namespace to Infinito namespace
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Action;
|
||||
namespace Infinito\Domain\RequestManagement\Action;
|
||||
|
||||
use App\Attribut\ActionTypeAttribut;
|
||||
use App\DBAL\Types\ActionType;
|
||||
use App\DBAL\Types\Meta\Right\CRUDType;
|
||||
use App\Domain\RequestManagement\User\RequestedUser;
|
||||
use App\Domain\RequestManagement\User\RequestedUserInterface;
|
||||
use Infinito\Attribut\ActionTypeAttribut;
|
||||
use Infinito\DBAL\Types\ActionType;
|
||||
use Infinito\DBAL\Types\Meta\Right\CRUDType;
|
||||
use Infinito\Domain\RequestManagement\User\RequestedUser;
|
||||
use Infinito\Domain\RequestManagement\User\RequestedUserInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -37,7 +37,7 @@ class RequestedAction extends RequestedUser implements RequestedActionInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\ActionTypeAttributInterface::setActionType()
|
||||
* @see \Infinito\Attribut\ActionTypeAttributInterface::setActionType()
|
||||
*/
|
||||
public function setActionType(string $actionType): void
|
||||
{
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Action;
|
||||
namespace Infinito\Domain\RequestManagement\Action;
|
||||
|
||||
use App\Attribut\ActionTypeAttributInterface;
|
||||
use App\Domain\RequestManagement\User\RequestedUserInterface;
|
||||
use Infinito\Attribut\ActionTypeAttributInterface;
|
||||
use Infinito\Domain\RequestManagement\User\RequestedUserInterface;
|
||||
|
||||
/**
|
||||
* An action containes multiple attributes which are neccessary to process a request.
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Action;
|
||||
namespace Infinito\Domain\RequestManagement\Action;
|
||||
|
||||
use App\Domain\RequestManagement\User\RequestedUserServiceInterface;
|
||||
use Infinito\Domain\RequestManagement\User\RequestedUserServiceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Action;
|
||||
namespace Infinito\Domain\RequestManagement\Action;
|
||||
|
||||
/**
|
||||
* Allows to use a action as a service.
|
||||
|
@@ -1,23 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Entity;
|
||||
namespace Infinito\Domain\RequestManagement\Entity;
|
||||
|
||||
use App\Entity\AbstractEntity;
|
||||
use App\Entity\EntityInterface;
|
||||
use App\Attribut\SlugAttribut;
|
||||
use App\Attribut\RequestedRightAttribut;
|
||||
use App\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||
use App\Repository\Source\SourceRepositoryInterface;
|
||||
use App\Exception\NotCorrectInstanceException;
|
||||
use App\Entity\Source\AbstractSource;
|
||||
use App\Exception\NotSetException;
|
||||
use App\Repository\RepositoryInterface;
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use Infinito\Entity\AbstractEntity;
|
||||
use Infinito\Entity\EntityInterface;
|
||||
use Infinito\Attribut\SlugAttribut;
|
||||
use Infinito\Attribut\RequestedRightAttribut;
|
||||
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||
use Infinito\Repository\Source\SourceRepositoryInterface;
|
||||
use Infinito\Exception\NotCorrectInstanceException;
|
||||
use Infinito\Entity\Source\AbstractSource;
|
||||
use Infinito\Exception\NotSetException;
|
||||
use Infinito\Repository\RepositoryInterface;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||
use App\Attribut\ClassAttribut;
|
||||
use App\Exception\AllreadyDefinedException;
|
||||
use App\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||
use App\Domain\RepositoryManagement\LayerRepositoryFactoryService;
|
||||
use Infinito\Attribut\ClassAttribut;
|
||||
use Infinito\Exception\AllreadyDefinedException;
|
||||
use Infinito\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryService;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -127,7 +127,7 @@ class RequestedEntity extends AbstractEntity implements RequestedEntityInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\RequestManagement\Entity\RequestedEntityInterface::hasIdentity()
|
||||
* @see \Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface::hasIdentity()
|
||||
*/
|
||||
public function hasIdentity(): bool
|
||||
{
|
||||
@@ -137,7 +137,7 @@ class RequestedEntity extends AbstractEntity implements RequestedEntityInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\RequestManagement\Entity\RequestedEntityInterface::setIdentity()
|
||||
* @see \Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface::setIdentity()
|
||||
*/
|
||||
public function setIdentity($identity): void
|
||||
{
|
||||
@@ -157,7 +157,7 @@ class RequestedEntity extends AbstractEntity implements RequestedEntityInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\ClassAttributInterface::setClass()
|
||||
* @see \Infinito\Attribut\ClassAttributInterface::setClass()
|
||||
*/
|
||||
public function setClass(string $class): void
|
||||
{
|
||||
@@ -170,7 +170,7 @@ class RequestedEntity extends AbstractEntity implements RequestedEntityInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\RequestManagement\Entity\RequestedEntityInterface::getEntity()
|
||||
* @see \Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface::getEntity()
|
||||
*/
|
||||
public function getEntity(): EntityInterface
|
||||
{
|
||||
@@ -186,7 +186,7 @@ class RequestedEntity extends AbstractEntity implements RequestedEntityInterface
|
||||
*
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RequestedRightAttributInterface::setRequestedRight()
|
||||
* @see \Infinito\Attribut\RequestedRightAttributInterface::setRequestedRight()
|
||||
*/
|
||||
public function setRequestedRight(RequestedRightInterface $requestedRight): void
|
||||
{
|
||||
@@ -199,7 +199,7 @@ class RequestedEntity extends AbstractEntity implements RequestedEntityInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\ClassAttributInterface::getClass()
|
||||
* @see \Infinito\Attribut\ClassAttributInterface::getClass()
|
||||
*/
|
||||
public function getClass(): string
|
||||
{
|
||||
|
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Entity;
|
||||
namespace Infinito\Domain\RequestManagement\Entity;
|
||||
|
||||
use App\Entity\EntityInterface;
|
||||
use App\Attribut\SlugAttributInterface;
|
||||
use App\Attribut\RequestedRightAttributInterface;
|
||||
use App\Attribut\ClassAttributInterface;
|
||||
use Infinito\Entity\EntityInterface;
|
||||
use Infinito\Attribut\SlugAttributInterface;
|
||||
use Infinito\Attribut\RequestedRightAttributInterface;
|
||||
use Infinito\Attribut\ClassAttributInterface;
|
||||
|
||||
/**
|
||||
* A requested entity containes the stumb attributes to load an entity.
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Entity;
|
||||
namespace Infinito\Domain\RequestManagement\Entity;
|
||||
|
||||
use App\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Entity;
|
||||
namespace Infinito\Domain\RequestManagement\Entity;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Right;
|
||||
namespace Infinito\Domain\RequestManagement\Right;
|
||||
|
||||
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
|
||||
/**
|
||||
* Offers a facade to wrapp a requested right.
|
||||
@@ -28,7 +28,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RecieverAttributInterface::getReciever()
|
||||
* @see \Infinito\Attribut\RecieverAttributInterface::getReciever()
|
||||
*/
|
||||
public function getReciever(): SourceInterface
|
||||
{
|
||||
@@ -38,7 +38,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\LayerAttributInterface::setLayer()
|
||||
* @see \Infinito\Attribut\LayerAttributInterface::setLayer()
|
||||
*/
|
||||
public function setLayer(string $layer): void
|
||||
{
|
||||
@@ -48,7 +48,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* @deprecated
|
||||
* {@inheritdoc}
|
||||
* @see \App\Domain\RequestManagement\Right\RequestedRightInterface::getSource()
|
||||
* @see \Infinito\Domain\RequestManagement\Right\RequestedRightInterface::getSource()
|
||||
*/
|
||||
public function getSource(): SourceInterface
|
||||
{
|
||||
@@ -58,7 +58,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\LayerAttributInterface::getLayer()
|
||||
* @see \Infinito\Attribut\LayerAttributInterface::getLayer()
|
||||
*/
|
||||
public function getLayer(): string
|
||||
{
|
||||
@@ -68,7 +68,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RequestedEntityAttributInterface::setRequestedEntity()
|
||||
* @see \Infinito\Attribut\RequestedEntityAttributInterface::setRequestedEntity()
|
||||
*/
|
||||
public function setRequestedEntity(RequestedEntityInterface $requestedEntity): void
|
||||
{
|
||||
@@ -78,7 +78,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\CrudAttributInterface::setCrud()
|
||||
* @see \Infinito\Attribut\CrudAttributInterface::setCrud()
|
||||
*/
|
||||
public function setCrud(string $crud): void
|
||||
{
|
||||
@@ -88,7 +88,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\CrudAttributInterface::getCrud()
|
||||
* @see \Infinito\Attribut\CrudAttributInterface::getCrud()
|
||||
*/
|
||||
public function getCrud(): string
|
||||
{
|
||||
@@ -98,7 +98,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RequestedEntityAttributInterface::getRequestedEntity()
|
||||
* @see \Infinito\Attribut\RequestedEntityAttributInterface::getRequestedEntity()
|
||||
*/
|
||||
public function getRequestedEntity(): RequestedEntityInterface
|
||||
{
|
||||
@@ -108,7 +108,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RecieverAttributInterface::setReciever()
|
||||
* @see \Infinito\Attribut\RecieverAttributInterface::setReciever()
|
||||
*/
|
||||
public function setReciever(?SourceInterface $reciever): void
|
||||
{
|
||||
@@ -118,7 +118,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RequestedEntityAttributInterface::hasRequestedEntity()
|
||||
* @see \Infinito\Attribut\RequestedEntityAttributInterface::hasRequestedEntity()
|
||||
*/
|
||||
public function hasRequestedEntity(): bool
|
||||
{
|
||||
@@ -128,7 +128,7 @@ abstract class AbstractRequestedRightFacade implements RequestedRightInterface
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RecieverAttributInterface::hasReciever()
|
||||
* @see \Infinito\Attribut\RecieverAttributInterface::hasReciever()
|
||||
*/
|
||||
public function hasReciever(): bool
|
||||
{
|
||||
|
@@ -1,17 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Right;
|
||||
namespace Infinito\Domain\RequestManagement\Right;
|
||||
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Attribut\CrudAttribut;
|
||||
use App\Attribut\LayerAttribut;
|
||||
use App\Attribut\RecieverAttribut;
|
||||
use App\Exception\PreconditionFailedException;
|
||||
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
||||
use App\Attribut\RequestedEntityAttribut;
|
||||
use App\Entity\Meta\MetaInterface;
|
||||
use App\Exception\NotCorrectInstanceException;
|
||||
use App\Domain\RequestManagement\Entity\RequestedEntity;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Attribut\CrudAttribut;
|
||||
use Infinito\Attribut\LayerAttribut;
|
||||
use Infinito\Attribut\RecieverAttribut;
|
||||
use Infinito\Exception\PreconditionFailedException;
|
||||
use Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
||||
use Infinito\Attribut\RequestedEntityAttribut;
|
||||
use Infinito\Entity\Meta\MetaInterface;
|
||||
use Infinito\Exception\NotCorrectInstanceException;
|
||||
use Infinito\Domain\RequestManagement\Entity\RequestedEntity;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -72,7 +72,7 @@ class RequestedRight implements RequestedRightInterface
|
||||
*
|
||||
* @see https://en.wikipedia.org/wiki/Lazy_loading
|
||||
* {@inheritdoc}
|
||||
* @see \App\Domain\RequestManagement\Right\RequestedRightInterface::getSource()
|
||||
* @see \Infinito\Domain\RequestManagement\Right\RequestedRightInterface::getSource()
|
||||
*/
|
||||
final public function getSource(): SourceInterface
|
||||
{
|
||||
@@ -87,7 +87,7 @@ class RequestedRight implements RequestedRightInterface
|
||||
*
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\RequestManagement\Right\RequestedRightInterface::setRequestedEntity()
|
||||
* @see \Infinito\Domain\RequestManagement\Right\RequestedRightInterface::setRequestedEntity()
|
||||
*/
|
||||
final public function setRequestedEntity(RequestedEntityInterface $requestedEntity): void
|
||||
{
|
||||
|
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Right;
|
||||
namespace Infinito\Domain\RequestManagement\Right;
|
||||
|
||||
use App\Attribut\CrudAttributInterface;
|
||||
use App\Attribut\RecieverAttributInterface;
|
||||
use App\Attribut\LayerAttributInterface;
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Attribut\RequestedEntityAttributInterface;
|
||||
use Infinito\Attribut\CrudAttributInterface;
|
||||
use Infinito\Attribut\RecieverAttributInterface;
|
||||
use Infinito\Attribut\LayerAttributInterface;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Attribut\RequestedEntityAttributInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -16,7 +16,7 @@ interface RequestedRightInterface extends CrudAttributInterface, RecieverAttribu
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\SourceAttributInterface::getSource()
|
||||
* @see \Infinito\Attribut\SourceAttributInterface::getSource()
|
||||
*/
|
||||
public function getSource(): SourceInterface;
|
||||
}
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Right;
|
||||
namespace Infinito\Domain\RequestManagement\Right;
|
||||
|
||||
use App\Domain\RequestManagement\Entity\RequestedEntityServiceInterface;
|
||||
use Infinito\Domain\RequestManagement\Entity\RequestedEntityServiceInterface;
|
||||
|
||||
/**
|
||||
* Allows to use a right as a Service.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\Right;
|
||||
namespace Infinito\Domain\RequestManagement\Right;
|
||||
|
||||
/**
|
||||
* Allows to use a right as a Service.
|
||||
|
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\User;
|
||||
namespace Infinito\Domain\RequestManagement\User;
|
||||
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Domain\UserManagement\UserSourceDirectorInterface;
|
||||
use App\Exception\SetNotPossibleException;
|
||||
use App\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||
use App\Domain\RequestManagement\Right\AbstractRequestedRightFacade;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Domain\UserManagement\UserSourceDirectorInterface;
|
||||
use Infinito\Exception\SetNotPossibleException;
|
||||
use Infinito\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||
use Infinito\Domain\RequestManagement\Right\AbstractRequestedRightFacade;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -33,7 +33,7 @@ class RequestedUser extends AbstractRequestedRightFacade implements RequestedUse
|
||||
* @see UserSourceDirectorInterface
|
||||
* @deprecated
|
||||
* {@inheritdoc}
|
||||
* @see \App\Attribut\RecieverAttributInterface::setReciever()
|
||||
* @see \Infinito\Attribut\RecieverAttributInterface::setReciever()
|
||||
*/
|
||||
public function setReciever(?SourceInterface $reciever): void
|
||||
{
|
||||
@@ -43,7 +43,7 @@ class RequestedUser extends AbstractRequestedRightFacade implements RequestedUse
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Attribut\RecieverAttributInterface::getReciever()
|
||||
* @see \Infinito\Attribut\RecieverAttributInterface::getReciever()
|
||||
*/
|
||||
public function getReciever(): SourceInterface
|
||||
{
|
||||
@@ -53,7 +53,7 @@ class RequestedUser extends AbstractRequestedRightFacade implements RequestedUse
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\RequestManagement\User\RequestedUserInterface::getUserSourceDirector()
|
||||
* @see \Infinito\Domain\RequestManagement\User\RequestedUserInterface::getUserSourceDirector()
|
||||
*/
|
||||
public function getUserSourceDirector(): UserSourceDirectorInterface
|
||||
{
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\User;
|
||||
namespace Infinito\Domain\RequestManagement\User;
|
||||
|
||||
use App\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||
use App\Domain\UserManagement\UserSourceDirectorInterface;
|
||||
use Infinito\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||
use Infinito\Domain\UserManagement\UserSourceDirectorInterface;
|
||||
|
||||
/**
|
||||
* Offers a Service for managing the rights.
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\User;
|
||||
namespace Infinito\Domain\RequestManagement\User;
|
||||
|
||||
use App\Domain\UserManagement\UserSourceDirectorServiceInterface;
|
||||
use App\Domain\RequestManagement\Right\RequestedRightServiceInterface;
|
||||
use Infinito\Domain\UserManagement\UserSourceDirectorServiceInterface;
|
||||
use Infinito\Domain\RequestManagement\Right\RequestedRightServiceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement\User;
|
||||
namespace Infinito\Domain\RequestManagement\User;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
Reference in New Issue
Block a user