Refactored\moved Attribut folder

This commit is contained in:
Kevin Frantz
2019-01-20 10:41:58 +01:00
parent 5301be7614
commit e695aa26ea
122 changed files with 223 additions and 223 deletions

View File

@@ -1,11 +1,11 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Exception\NoValidChoiceException;
use App\Entity\Attribut\ActionTypeAttributInterface;
use App\Entity\Attribut\ActionTypeAttribut;
use App\Attribut\ActionTypeAttributInterface;
use App\Attribut\ActionTypeAttribut;
use App\DBAL\Types\ActionType;
/**

View File

@@ -1,10 +1,10 @@
<?php
namespace Entity\Attribut;
namespace Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\ChildsAttributeInterface;
use App\Entity\Attribut\ChildsAttribut;
use App\Attribut\ChildsAttributeInterface;
use App\Attribut\ChildsAttribut;
use Doctrine\Common\Collections\ArrayCollection;
class ChildsAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\CollectionAttributInterface;
use App\Entity\Attribut\CollectionAttribut;
use App\Attribut\CollectionAttributInterface;
use App\Attribut\CollectionAttribut;
use Doctrine\Common\Collections\ArrayCollection;
class CollectionAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace Entity\Attribut;
namespace Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\ConditionAttributInterface;
use App\Entity\Attribut\ConditionAttribut;
use App\Attribut\ConditionAttributInterface;
use App\Attribut\ConditionAttribut;
use App\Logic\Operation\OperationInterface;
class ConditionAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace App\Tests\Unit\Entity\Attribut;
namespace App\Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\CreatorRelationAttributInterface;
use App\Entity\Attribut\CreatorRelationAttribut;
use App\Attribut\CreatorRelationAttributInterface;
use App\Attribut\CreatorRelationAttribut;
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
class CreatorRelationAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\CrudAttributInterface;
use App\Entity\Attribut\CrudAttribut;
use App\Attribut\CrudAttributInterface;
use App\Attribut\CrudAttribut;
use App\DBAL\Types\Meta\Right\CRUDType;
use App\Exception\NoValidChoiceException;

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\FirstNameSourceAttribut;
use App\Entity\Attribut\FirstNameSourceAttributInterface;
use App\Attribut\FirstNameSourceAttribut;
use App\Attribut\FirstNameSourceAttributInterface;
use App\Entity\Source\Primitive\Name\FirstNameSourceInterface;
/**

View File

@@ -1,11 +1,11 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Source\Complex\FullPersonNameSourceInterface;
use App\Entity\Attribut\FullPersonNameSourceAttributInterface;
use App\Entity\Attribut\FullPersonNameSourceAttribut;
use App\Attribut\FullPersonNameSourceAttributInterface;
use App\Attribut\FullPersonNameSourceAttribut;
/**
* @author kevinfrantz

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\GrantAttribut;
use App\Entity\Attribut\GrantAttributInterface;
use App\Attribut\GrantAttribut;
use App\Attribut\GrantAttributInterface;
class GrantAttributTest extends TestCase
{

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\IdAttribut;
use App\Entity\Attribut\IdAttributInterface;
use App\Attribut\IdAttribut;
use App\Attribut\IdAttributInterface;
/**
* @author kevinfrantz

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\LayerAttributInterface;
use App\Entity\Attribut\LayerAttribut;
use App\Attribut\LayerAttributInterface;
use App\Attribut\LayerAttribut;
use App\DBAL\Types\Meta\Right\LayerType;
use App\Exception\NoValidChoiceException;

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\MemberRelationAttributInterface;
use App\Entity\Attribut\MemberRelationAttribut;
use App\Attribut\MemberRelationAttributInterface;
use App\Attribut\MemberRelationAttribut;
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
class MemberRelationAttributTest extends TestCase

View File

@@ -1,12 +1,12 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use Doctrine\Common\Collections\ArrayCollection;
use App\Entity\Attribut\MembersAttributInterface;
use App\Attribut\MembersAttributInterface;
use App\Entity\Source\SourceInterface;
use App\Entity\Attribut\MembersAttribut;
use App\Attribut\MembersAttribut;
class MembersAttributTest extends TestCase
{

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\MembershipsAttributInterface;
use App\Entity\Attribut\MembershipsAttribut;
use App\Attribut\MembershipsAttributInterface;
use App\Attribut\MembershipsAttribut;
use Doctrine\Common\Collections\ArrayCollection;
use App\Entity\Source\Complex\Collection\TreeCollectionSourceInterface;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Attribut;
namespace App\Attribut;
use PHPUnit\Framework\TestCase;

View File

@@ -1,10 +1,10 @@
<?php
namespace tests\unit\Entity\Attribut;
namespace tests\unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\NameSourceAttributInterface;
use App\Entity\Attribut\NameSourceAttribut;
use App\Attribut\NameSourceAttributInterface;
use App\Attribut\NameSourceAttribut;
use App\Entity\Source\Primitive\Name\NameSourceInterface;
class NameSourceAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace App\Tests\Unit\Entity\Attribut;
namespace App\Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\ParentRelationAttributInterface;
use App\Entity\Attribut\ParentRelationAttribut;
use App\Attribut\ParentRelationAttributInterface;
use App\Attribut\ParentRelationAttribut;
use App\Entity\Meta\Relation\Parent\ParentRelationInterface;
class ParentRelationAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace Entity\Attribut;
namespace Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\ParentsAttributInterface;
use App\Entity\Attribut\ParentsAttribut;
use App\Attribut\ParentsAttributInterface;
use App\Attribut\ParentsAttribut;
use Doctrine\Common\Collections\ArrayCollection;
class ParentsAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\PersonIdentitySourceAttributInterface;
use App\Entity\Attribut\PersonIdentitySourceAttribut;
use App\Attribut\PersonIdentitySourceAttributInterface;
use App\Attribut\PersonIdentitySourceAttribut;
use App\Entity\Source\Complex\PersonIdentitySourceInterface;
/**

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\PriorityAttributInterface;
use App\Entity\Attribut\PriorityAttribut;
use App\Attribut\PriorityAttributInterface;
use App\Attribut\PriorityAttribut;
/**
* @author kevinfrantz

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\RecieverAttributInterface;
use App\Entity\Attribut\RecieverAttribut;
use App\Attribut\RecieverAttributInterface;
use App\Attribut\RecieverAttribut;
use App\Entity\Source\AbstractSource;
class RecieverAttributTest extends TestCase

View File

@@ -1,11 +1,11 @@
<?php
namespace App\Tests\Unit\Entity\Attribut;
namespace App\Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Meta\Relation\RelationInterface;
use App\Entity\Attribut\RelationAttributInterface;
use App\Entity\Attribut\RelationAttribut;
use App\Attribut\RelationAttributInterface;
use App\Attribut\RelationAttribut;
class RelationAttributTest extends TestCase
{

View File

@@ -1,10 +1,10 @@
<?php
namespace App\Tests\Unit\Entity\Attribut;
namespace App\Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\RightAttributInterface;
use App\Entity\Attribut\RightAttribut;
use App\Attribut\RightAttributInterface;
use App\Attribut\RightAttribut;
use App\Entity\Meta\RightInterface;
class RightAttributTest extends TestCase

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Entity\Attribut;
namespace Tests\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\SlugAttributInterface;
use App\Entity\Attribut\SlugAttribut;
use App\Attribut\SlugAttributInterface;
use App\Attribut\SlugAttribut;
/**
* @author kevinfrantz

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\TextAttributInterface;
use App\Entity\Attribut\TextAttribut;
use App\Attribut\TextAttributInterface;
use App\Attribut\TextAttribut;
/**
* @author kevinfrantz

View File

@@ -1,10 +1,10 @@
<?php
namespace Tests\Unit\Entity\Attribut;
namespace Tests\Unit\Attribut;
use PHPUnit\Framework\TestCase;
use App\Entity\Attribut\UserAttributInterface;
use App\Entity\Attribut\UserAttribut;
use App\Attribut\UserAttributInterface;
use App\Attribut\UserAttribut;
use App\Entity\UserInterface;
class UserAttributTest extends TestCase

View File

@@ -10,8 +10,8 @@ use App\Domain\SecureManagement\SecureSourceChecker;
use App\Entity\Meta\Right;
use App\DBAL\Types\Meta\Right\LayerType;
use App\DBAL\Types\Meta\Right\CRUDType;
use App\Entity\Attribut\SourceAttribut;
use App\Entity\Attribut\SourceAttributInterface;
use App\Attribut\SourceAttribut;
use App\Attribut\SourceAttributInterface;
use App\Exception\SourceAccessDenied;
/**