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\Entity\Source\Primitive;
namespace Infinito\Entity\Source\Primitive;
use App\Entity\Source\AbstractSource;
use Infinito\Entity\Source\AbstractSource;
/**
* @author kevinfrantz

View File

@@ -1,9 +1,9 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
use App\Entity\Source\Primitive\AbstractPrimitiveSource;
use App\Attribut\NameAttribut;
use Infinito\Entity\Source\Primitive\AbstractPrimitiveSource;
use Infinito\Attribut\NameAttribut;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
use Doctrine\ORM\Mapping as ORM;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
interface FirstNameSourceInterface extends NameSourceInterface
{

View File

@@ -1,9 +1,9 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
use App\Entity\Source\Primitive\PrimitiveSourceInterface;
use App\Attribut\NameAttributInterface;
use Infinito\Entity\Source\Primitive\PrimitiveSourceInterface;
use Infinito\Attribut\NameAttributInterface;
interface NameSourceInterface extends PrimitiveSourceInterface, NameAttributInterface
{

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
use Doctrine\ORM\Mapping as ORM;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
/**
* @author kevinfrantz

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
use Doctrine\ORM\Mapping as ORM;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Primitive\Name;
namespace Infinito\Entity\Source\Primitive\Name;
interface SurnameSourceInterface extends NameSourceInterface
{

View File

@@ -1,8 +1,8 @@
<?php
namespace App\Entity\Source\Primitive;
namespace Infinito\Entity\Source\Primitive;
use App\Entity\Source\SourceInterface;
use Infinito\Entity\Source\SourceInterface;
/**
* Primitive sources contain one attribut, which is not a source.

View File

@@ -1,9 +1,9 @@
<?php
namespace App\Entity\Source\Primitive\Text;
namespace Infinito\Entity\Source\Primitive\Text;
use App\Entity\Source\Primitive\AbstractPrimitiveSource;
use App\Attribut\TextAttribut;
use Infinito\Entity\Source\Primitive\AbstractPrimitiveSource;
use Infinito\Attribut\TextAttribut;
use Doctrine\ORM\Mapping as ORM;
/**

View File

@@ -1,9 +1,9 @@
<?php
namespace App\Entity\Source\Primitive\Text;
namespace Infinito\Entity\Source\Primitive\Text;
use App\Entity\Source\Primitive\PrimitiveSourceInterface;
use App\Attribut\TextAttributInterface;
use Infinito\Entity\Source\Primitive\PrimitiveSourceInterface;
use Infinito\Attribut\TextAttributInterface;
interface TextSourceInterface extends PrimitiveSourceInterface, TextAttributInterface
{