updating msgphp eav receipt for msgphp pull 214

This commit is contained in:
Pascal Wacker
2018-10-27 17:36:10 +02:00
parent 0611f6f723
commit 3d610f70f7
2 changed files with 2 additions and 2 deletions
@@ -11,7 +11,7 @@ use MsgPhp\Eav\Entity\Attribute as BaseAttribute;
*/
class Attribute extends BaseAttribute
{
/** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_id") */
/** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_id", length=191) */
private $id;
public function __construct(AttributeIdInterface $id)
@@ -11,7 +11,7 @@ use MsgPhp\Eav\Entity\AttributeValue as BaseAttributeValue;
*/
class AttributeValue extends BaseAttributeValue
{
/** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_value_id") */
/** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_value_id", length=191) */
private $id;
public function __construct(AttributeValueIdInterface $id, Attribute $attribute, $value)