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,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
namespace Infinito\Repository;
|
||||
|
||||
use Doctrine\ORM\EntityRepository;
|
||||
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository\Meta;
|
||||
namespace Infinito\Repository\Meta;
|
||||
|
||||
use App\Repository\AbstractRepository;
|
||||
use Infinito\Repository\AbstractRepository;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository\Meta;
|
||||
namespace Infinito\Repository\Meta;
|
||||
|
||||
use App\Repository\AbstractRepository;
|
||||
use Infinito\Repository\AbstractRepository;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
namespace Infinito\Repository;
|
||||
|
||||
use Doctrine\Common\Persistence\ObjectRepository;
|
||||
use Doctrine\Common\Collections\Selectable;
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
namespace Infinito\Repository;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
Reference in New Issue
Block a user