mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-11-13 07:36:31 +00:00
Changed App namespace to Infinito namespace
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Primitive\Name;
|
||||
namespace Infinito\Entity\Source\Primitive\Name;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Primitive\Name;
|
||||
namespace Infinito\Entity\Source\Primitive\Name;
|
||||
|
||||
interface FirstNameSourceInterface extends NameSourceInterface
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Primitive\Name;
|
||||
namespace Infinito\Entity\Source\Primitive\Name;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Primitive\Name;
|
||||
namespace Infinito\Entity\Source\Primitive\Name;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Primitive\Name;
|
||||
namespace Infinito\Entity\Source\Primitive\Name;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Primitive\Name;
|
||||
namespace Infinito\Entity\Source\Primitive\Name;
|
||||
|
||||
interface SurnameSourceInterface extends NameSourceInterface
|
||||
{
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user