Update AttributeValue.php

This commit is contained in:
Roland Franssen
2018-03-27 21:13:42 +02:00
committed by GitHub
parent ebb164c0c9
commit 703e1e216b
@@ -2,14 +2,16 @@
namespace App\Entity\Eav;
use Doctrine\ORM\Mapping as ORM;
use MsgPhp\Eav\AttributeValueIdInterface;
use MsgPhp\Eav\Entity\AttributeValue as BaseAttributeValue;
/**
* @final
* @ORM\Entity()
*/
class AttributeValue extends BaseAttributeValue
{
/** @ORM\Id @ORM\Column(type="msgphp_attribute_value_id") */
private $id;
public function __construct(AttributeValueIdInterface $id, Attribute $attribute, $value)