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,6 +1,6 @@
<?php
namespace App\Repository;
namespace Infinito\Repository;
use Doctrine\ORM\EntityRepository;

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Repository\Meta;
namespace Infinito\Repository\Meta;
use App\Repository\AbstractRepository;
use Infinito\Repository\AbstractRepository;
/**
* @author kevinfrantz

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Repository\Meta;
namespace Infinito\Repository\Meta;
use App\Repository\AbstractRepository;
use Infinito\Repository\AbstractRepository;
/**
* @author kevinfrantz

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Repository;
namespace Infinito\Repository;
use Doctrine\Common\Persistence\ObjectRepository;
use Doctrine\Common\Collections\Selectable;

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Repository\Source\Complex;
namespace Infinito\Repository\Source\Complex;
use App\Repository\AbstractRepository;
use Infinito\Repository\AbstractRepository;
/**
* @author kevinfrantz

View File

@@ -1,10 +1,10 @@
<?php
namespace App\Repository\Source;
namespace Infinito\Repository\Source;
use App\Entity\Source\SourceInterface;
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
use App\Repository\AbstractRepository;
use Infinito\Entity\Source\SourceInterface;
use Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface;
use Infinito\Repository\AbstractRepository;
/**
* @author kevinfrantz
@@ -14,7 +14,7 @@ final class SourceRepository extends AbstractRepository implements SourceReposit
/**
* {@inheritdoc}
*
* @see \App\Repository\Source\SourceRepositoryInterface::findOneBySlug()
* @see \Infinito\Repository\Source\SourceRepositoryInterface::findOneBySlug()
*/
public function findOneBySlug(string $slug): ?SourceInterface
{
@@ -26,7 +26,7 @@ final class SourceRepository extends AbstractRepository implements SourceReposit
/**
* {@inheritdoc}
*
* @see \App\Repository\Source\SourceRepositoryInterface::findOneByIdOrSlug()
* @see \Infinito\Repository\Source\SourceRepositoryInterface::findOneByIdOrSlug()
*/
public function findOneByIdOrSlug(RequestedEntityInterface $requestedSource): ?SourceInterface
{

View File

@@ -1,10 +1,10 @@
<?php
namespace App\Repository\Source;
namespace Infinito\Repository\Source;
use App\Entity\Source\SourceInterface;
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
use App\Repository\RepositoryInterface;
use Infinito\Entity\Source\SourceInterface;
use Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface;
use Infinito\Repository\RepositoryInterface;
/**
* @author kevinfrantz

View File

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