diff --git a/msgphp/eav-bundle/0.1/src/Entity/Eav/Attribute.php b/msgphp/eav-bundle/0.1/src/Entity/Eav/Attribute.php deleted file mode 100644 index 4b299f3d..00000000 --- a/msgphp/eav-bundle/0.1/src/Entity/Eav/Attribute.php +++ /dev/null @@ -1,12 +0,0 @@ -id = $id; + } + + public function getId(): AttributeIdInterface + { + return $this->id; + } +} diff --git a/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php b/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php new file mode 100644 index 00000000..bf1d7a74 --- /dev/null +++ b/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php @@ -0,0 +1,26 @@ +id = $id; + } + + public function getId(): AttributeValueIdInterface + { + return $this->id; + } +} diff --git a/msgphp/user-bundle/0.1/src/Entity/User/User.php b/msgphp/user-bundle/0.1/src/Entity/User/User.php deleted file mode 100644 index af358bff..00000000 --- a/msgphp/user-bundle/0.1/src/Entity/User/User.php +++ /dev/null @@ -1,12 +0,0 @@ -id = $id; + } + + public function getId(): UserIdInterface + { + return $this->id; + } +}