From f3bf5699587d3205bcc2a77ec1b745b811a6c12d Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Wed, 7 Mar 2018 11:51:15 +0100 Subject: [PATCH] Update MsgPHP user + EAV bundle to v0.2 --- .../0.1/src/Entity/Eav/Attribute.php | 12 --------- .../0.1/src/Entity/Eav/AttributeValue.php | 12 --------- .../config/packages/msgphp_eav.php | 0 msgphp/eav-bundle/{0.1 => 0.2}/manifest.json | 0 .../0.2/src/Entity/Eav/Attribute.php | 24 +++++++++++++++++ .../0.2/src/Entity/Eav/AttributeValue.php | 26 +++++++++++++++++++ .../user-bundle/0.1/src/Entity/User/User.php | 12 --------- .../config/packages/msgphp_user.php | 0 msgphp/user-bundle/{0.1 => 0.2}/manifest.json | 0 .../user-bundle/0.2/src/Entity/User/User.php | 24 +++++++++++++++++ 10 files changed, 74 insertions(+), 36 deletions(-) delete mode 100644 msgphp/eav-bundle/0.1/src/Entity/Eav/Attribute.php delete mode 100644 msgphp/eav-bundle/0.1/src/Entity/Eav/AttributeValue.php rename msgphp/eav-bundle/{0.1 => 0.2}/config/packages/msgphp_eav.php (100%) rename msgphp/eav-bundle/{0.1 => 0.2}/manifest.json (100%) create mode 100644 msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php create mode 100644 msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php delete mode 100644 msgphp/user-bundle/0.1/src/Entity/User/User.php rename msgphp/user-bundle/{0.1 => 0.2}/config/packages/msgphp_user.php (100%) rename msgphp/user-bundle/{0.1 => 0.2}/manifest.json (100%) create mode 100644 msgphp/user-bundle/0.2/src/Entity/User/User.php 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; + } +}