diff --git a/msgphp/eav-bundle/0.2/config/packages/msgphp_eav.php b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php similarity index 55% rename from msgphp/eav-bundle/0.2/config/packages/msgphp_eav.php rename to msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php index 7af6ad69..7ff6ab19 100644 --- a/msgphp/eav-bundle/0.2/config/packages/msgphp_eav.php +++ b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php @@ -1,13 +1,14 @@ extension('msgphp_eav', [ 'class_mapping' => [ - Attribute::class => \App\Entity\Eav\Attribute::class, - AttributeValue::class => \App\Entity\Eav\AttributeValue::class, + Attribute::class => \App\Entity\Attribute::class, + AttributeValue::class => \App\Entity\AttributeValue::class, ], ]); }; diff --git a/msgphp/eav-bundle/0.2/manifest.json b/msgphp/eav-bundle/0.10/manifest.json similarity index 100% rename from msgphp/eav-bundle/0.2/manifest.json rename to msgphp/eav-bundle/0.10/manifest.json diff --git a/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php b/msgphp/eav-bundle/0.10/src/Entity/Attribute.php similarity index 57% rename from msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php rename to msgphp/eav-bundle/0.10/src/Entity/Attribute.php index 6fd4a6e7..11520cfb 100644 --- a/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php +++ b/msgphp/eav-bundle/0.10/src/Entity/Attribute.php @@ -1,10 +1,10 @@ id = $id; } - public function getId(): AttributeIdInterface + public function getId(): AttributeId { return $this->id; } diff --git a/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php b/msgphp/eav-bundle/0.10/src/Entity/AttributeValue.php similarity index 56% rename from msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php rename to msgphp/eav-bundle/0.10/src/Entity/AttributeValue.php index 2534e028..4ab70f8b 100644 --- a/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php +++ b/msgphp/eav-bundle/0.10/src/Entity/AttributeValue.php @@ -1,10 +1,10 @@ id = $id; } - public function getId(): AttributeValueIdInterface + public function getId(): AttributeValueId { return $this->id; } diff --git a/msgphp/user-bundle/0.6/config/packages/msgphp_user.php b/msgphp/user-bundle/0.10/config/packages/msgphp_user.php similarity index 91% rename from msgphp/user-bundle/0.6/config/packages/msgphp_user.php rename to msgphp/user-bundle/0.10/config/packages/msgphp_user.php index e1f3f0bc..5fc58ec8 100644 --- a/msgphp/user-bundle/0.6/config/packages/msgphp_user.php +++ b/msgphp/user-bundle/0.10/config/packages/msgphp_user.php @@ -1,6 +1,6 @@ id = $id; } - public function getId(): UserIdInterface + public function getId(): UserId { return $this->id; }