mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-14 06:07:18 +02:00
Changed App namespace to Infinito namespace
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\FixtureManagement\FixtureSource;
|
||||
namespace Infinito\Domain\FixtureManagement\FixtureSource;
|
||||
|
||||
/**
|
||||
* Classes which inhiere from this class and should be loaded by SourceFixtures MUST be declared as final.
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\FixtureManagement\FixtureSource;
|
||||
namespace Infinito\Domain\FixtureManagement\FixtureSource;
|
||||
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Attribut\SlugAttributInterface;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Attribut\SlugAttributInterface;
|
||||
|
||||
/**
|
||||
* This interface allows to save the configuration values of an fixture in a class.
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\FixtureManagement\FixtureSource;
|
||||
namespace Infinito\Domain\FixtureManagement\FixtureSource;
|
||||
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Entity\Source\Complex\UserSource;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Entity\Source\Complex\UserSource;
|
||||
|
||||
/**
|
||||
* This class containes the guest user.
|
||||
@@ -17,7 +17,7 @@ final class GuestUserFixtureSource extends AbstractFixtureSource
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface::getORMReadyObject()
|
||||
* @see \Infinito\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface::getORMReadyObject()
|
||||
*/
|
||||
public function getORMReadyObject(): SourceInterface
|
||||
{
|
||||
|
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\FixtureManagement\FixtureSource;
|
||||
namespace Infinito\Domain\FixtureManagement\FixtureSource;
|
||||
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Entity\Source\Primitive\Text\TextSource;
|
||||
use App\Entity\Meta\Right;
|
||||
use App\DBAL\Types\Meta\Right\LayerType;
|
||||
use App\DBAL\Types\Meta\Right\CRUDType;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Entity\Source\Primitive\Text\TextSource;
|
||||
use Infinito\Entity\Meta\Right;
|
||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||
use Infinito\DBAL\Types\Meta\Right\CRUDType;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -18,7 +18,7 @@ final class ImpressumFixtureSource extends AbstractFixtureSource
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface::getORMReadyObject()
|
||||
* @see \Infinito\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface::getORMReadyObject()
|
||||
*/
|
||||
public function getORMReadyObject(): SourceInterface
|
||||
{
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\FixtureManagement;
|
||||
namespace Infinito\Domain\FixtureManagement;
|
||||
|
||||
use HaydenPierce\ClassFinder\ClassFinder;
|
||||
use App\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface;
|
||||
use Infinito\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
@@ -13,7 +13,7 @@ final class FixtureSourceFactory implements FixtureSourceFactoryInterface
|
||||
/**
|
||||
* @var string Namespace in which the fixture sources are saved
|
||||
*/
|
||||
const FIXTURE_SOURCE_NAMESPACE = 'App\Domain\FixtureManagement\FixtureSource';
|
||||
const FIXTURE_SOURCE_NAMESPACE = 'Infinito\Domain\FixtureManagement\FixtureSource';
|
||||
|
||||
/**
|
||||
* @return array|FixtureSourceInterface[]
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\FixtureManagement;
|
||||
namespace Infinito\Domain\FixtureManagement;
|
||||
|
||||
use App\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface;
|
||||
use Infinito\Domain\FixtureManagement\FixtureSource\FixtureSourceInterface;
|
||||
|
||||
/**
|
||||
* Offers a Factory to produce sources.
|
||||
|
Reference in New Issue
Block a user