mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Renamed domain SourceManagement to Source
This commit is contained in:
@@ -13,7 +13,7 @@ use Infinito\Entity\Meta\Law;
|
||||
use Infinito\Entity\Meta\LawInterface;
|
||||
use Infinito\Entity\Meta\RightInterface;
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
use Infinito\Domain\SourceManagement\SourceMemberManager;
|
||||
use Infinito\Domain\Source\SourceMemberManager;
|
||||
use Infinito\Entity\Source\PureSource;
|
||||
|
||||
/**
|
||||
|
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace tests\Unit\Domain\SourceManagement;
|
||||
namespace tests\Unit\Domain\Source;
|
||||
|
||||
use Infinito\Domain\SourceManagement\SourceClassInformationServiceInterface;
|
||||
use Infinito\Domain\SourceManagement\SourceClassInformationService;
|
||||
use Infinito\Domain\Source\SourceClassInformationServiceInterface;
|
||||
use Infinito\Domain\Source\SourceClassInformationService;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Entity\Source\PureSource;
|
||||
use Infinito\Entity\Source\Complex\AbstractComplexSource;
|
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Domain\SourceManagement;
|
||||
namespace Tests\Unit\Domain\Source;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
@@ -9,8 +9,8 @@ use Infinito\Entity\Source\Primitive\Text\TextSource;
|
||||
use Infinito\Entity\Source\Primitive\Name\FirstNameSource;
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
use Infinito\Entity\Source\Complex\FullPersonNameSource;
|
||||
use Infinito\Domain\SourceManagement\SourceMemberInformation;
|
||||
use Infinito\Domain\SourceManagement\SourceMemberInformationInterface;
|
||||
use Infinito\Domain\Source\SourceMemberInformation;
|
||||
use Infinito\Domain\Source\SourceMemberInformationInterface;
|
||||
use Infinito\Entity\Source\PureSource;
|
||||
|
||||
class SourceMemberInformationTest extends TestCase
|
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Domain\SourceManagement;
|
||||
namespace Tests\Unit\Domain\Source;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Domain\SourceManagement\SourceMemberManagerInterface;
|
||||
use Infinito\Domain\SourceManagement\SourceMemberManager;
|
||||
use Infinito\Domain\Source\SourceMemberManagerInterface;
|
||||
use Infinito\Domain\Source\SourceMemberManager;
|
||||
use Infinito\Entity\Source\PureSource;
|
||||
|
||||
class SourceMemberManagerTest extends TestCase
|
@@ -1,10 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Domain\SourceManagement;
|
||||
namespace Tests\Unit\Domain\Source;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Domain\SourceManagement\SourceMembershipInformationInterface;
|
||||
use Infinito\Domain\SourceManagement\SourceMembershipInformation;
|
||||
use Infinito\Domain\Source\SourceMembershipInformationInterface;
|
||||
use Infinito\Domain\Source\SourceMembershipInformation;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Entity\Source\Complex\UserSource;
|
||||
use Infinito\Entity\Source\Primitive\Text\TextSource;
|
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Unit\Domain\SourceManagement;
|
||||
namespace Unit\Domain\Source;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Infinito\Domain\SourceManagement\SourceRightManagerInterface;
|
||||
use Infinito\Domain\SourceManagement\SourceRightManager;
|
||||
use Infinito\Domain\Source\SourceRightManagerInterface;
|
||||
use Infinito\Domain\Source\SourceRightManager;
|
||||
use Infinito\Entity\Meta\RightInterface;
|
||||
use Infinito\Entity\Meta\Right;
|
||||
use Infinito\Entity\Meta\Law;
|
@@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Domain\SourceManagement;
|
||||
namespace Tests\Unit\Domain\Source;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Entity\Source\Complex\Collection\TreeCollectionSource;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
use Infinito\Domain\SourceManagement\TreeSourceInformationInterface;
|
||||
use Infinito\Domain\SourceManagement\TreeSourceInformation;
|
||||
use Infinito\Domain\Source\TreeSourceInformationInterface;
|
||||
use Infinito\Domain\Source\TreeSourceInformation;
|
||||
|
||||
class TreeSourceInformationTest extends TestCase
|
||||
{
|
@@ -5,7 +5,7 @@ namespace tests\Unit\Repository\Source;
|
||||
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
||||
use Doctrine\ORM\EntityManager;
|
||||
use Infinito\Entity\Source\Complex\UserSource;
|
||||
use Infinito\Domain\SourceManagement\SourceMemberManager;
|
||||
use Infinito\Domain\Source\SourceMemberManager;
|
||||
|
||||
/**
|
||||
* @todo refactor this to an integration test!
|
||||
|
Reference in New Issue
Block a user