From 999d17ad284571b0947b293c72c40e331653abc3 Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Wed, 21 Nov 2018 17:55:48 +0100 Subject: [PATCH] Changed combination to complex --- .../src/Entity/Attribut/FullPersonNameSourceAttribut.php | 2 +- .../Attribut/FullPersonNameSourceAttributInterface.php | 2 +- .../src/Entity/Attribut/PersonIdentitySourceAttribut.php | 2 +- .../Attribut/PersonIdentitySourceAttributInterface.php | 2 +- .../AbstractCombinationSource.php | 2 +- .../CombinationSourceInterface.php | 2 +- .../{Combination => Complex}/FullPersonNameSource.php | 2 +- .../FullPersonNameSourceInterface.php | 2 +- .../{Combination => Complex}/PersonIdentitySource.php | 2 +- .../PersonIdentitySourceInterface.php | 2 +- .../Entity/Source/{Combination => Complex}/UserSource.php | 2 +- .../{Combination => Complex}/UserSourceInterface.php | 2 +- application/src/Entity/User.php | 6 +++--- .../Entity/Attribut/FullPersonNameSourceAttributTest.php | 2 +- .../Entity/Attribut/PersonIdentitySourceAttributTest.php | 2 +- .../{Combination => Complex}/FullPersonNameSourceTest.php | 6 +++--- .../{Combination => Complex}/PersonIdentitySourceTest.php | 8 ++++---- .../Source/{Combination => Complex}/UserSourceTest.php | 8 ++++---- application/tests/Unit/Entity/UserTest.php | 2 +- 19 files changed, 29 insertions(+), 29 deletions(-) rename application/src/Entity/Source/{Combination => Complex}/AbstractCombinationSource.php (93%) rename application/src/Entity/Source/{Combination => Complex}/CombinationSourceInterface.php (76%) rename application/src/Entity/Source/{Combination => Complex}/FullPersonNameSource.php (97%) rename application/src/Entity/Source/{Combination => Complex}/FullPersonNameSourceInterface.php (89%) rename application/src/Entity/Source/{Combination => Complex}/PersonIdentitySource.php (94%) rename application/src/Entity/Source/{Combination => Complex}/PersonIdentitySourceInterface.php (82%) rename application/src/Entity/Source/{Combination => Complex}/UserSource.php (96%) rename application/src/Entity/Source/{Combination => Complex}/UserSourceInterface.php (88%) rename application/tests/Unit/Entity/Source/{Combination => Complex}/FullPersonNameSourceTest.php (87%) rename application/tests/Unit/Entity/Source/{Combination => Complex}/PersonIdentitySourceTest.php (75%) rename application/tests/Unit/Entity/Source/{Combination => Complex}/UserSourceTest.php (75%) diff --git a/application/src/Entity/Attribut/FullPersonNameSourceAttribut.php b/application/src/Entity/Attribut/FullPersonNameSourceAttribut.php index 5a8aff6..8b36a83 100644 --- a/application/src/Entity/Attribut/FullPersonNameSourceAttribut.php +++ b/application/src/Entity/Attribut/FullPersonNameSourceAttribut.php @@ -2,7 +2,7 @@ namespace App\Entity\Attribut; -use App\Entity\Source\Combination\FullPersonNameSourceInterface; +use App\Entity\Source\Complex\FullPersonNameSourceInterface; trait FullPersonNameSourceAttribut { diff --git a/application/src/Entity/Attribut/FullPersonNameSourceAttributInterface.php b/application/src/Entity/Attribut/FullPersonNameSourceAttributInterface.php index 74f9675..3cd1876 100644 --- a/application/src/Entity/Attribut/FullPersonNameSourceAttributInterface.php +++ b/application/src/Entity/Attribut/FullPersonNameSourceAttributInterface.php @@ -2,7 +2,7 @@ namespace App\Entity\Attribut; -use App\Entity\Source\Combination\FullPersonNameSourceInterface; +use App\Entity\Source\Complex\FullPersonNameSourceInterface; interface FullPersonNameSourceAttributInterface { diff --git a/application/src/Entity/Attribut/PersonIdentitySourceAttribut.php b/application/src/Entity/Attribut/PersonIdentitySourceAttribut.php index 5345e25..74ae883 100644 --- a/application/src/Entity/Attribut/PersonIdentitySourceAttribut.php +++ b/application/src/Entity/Attribut/PersonIdentitySourceAttribut.php @@ -2,7 +2,7 @@ namespace App\Entity\Attribut; -use App\Entity\Source\Combination\PersonIdentitySourceInterface; +use App\Entity\Source\Complex\PersonIdentitySourceInterface; trait PersonIdentitySourceAttribut { diff --git a/application/src/Entity/Attribut/PersonIdentitySourceAttributInterface.php b/application/src/Entity/Attribut/PersonIdentitySourceAttributInterface.php index a759331..9538de0 100644 --- a/application/src/Entity/Attribut/PersonIdentitySourceAttributInterface.php +++ b/application/src/Entity/Attribut/PersonIdentitySourceAttributInterface.php @@ -2,7 +2,7 @@ namespace App\Entity\Attribut; -use App\Entity\Source\Combination\PersonIdentitySourceInterface; +use App\Entity\Source\Complex\PersonIdentitySourceInterface; interface PersonIdentitySourceAttributInterface { diff --git a/application/src/Entity/Source/Combination/AbstractCombinationSource.php b/application/src/Entity/Source/Complex/AbstractCombinationSource.php similarity index 93% rename from application/src/Entity/Source/Combination/AbstractCombinationSource.php rename to application/src/Entity/Source/Complex/AbstractCombinationSource.php index 0357cec..4fd076b 100644 --- a/application/src/Entity/Source/Combination/AbstractCombinationSource.php +++ b/application/src/Entity/Source/Complex/AbstractCombinationSource.php @@ -1,6 +1,6 @@