Merge pull request #550

This commit is contained in:
symfony-flex-server[bot]
2018-10-27 16:06:00 +00:00
committed by GitHub
3 changed files with 3 additions and 3 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)
@@ -11,7 +11,7 @@ use MsgPhp\User\UserIdInterface;
*/
class User extends BaseUser
{
/** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_user_id") */
/** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_user_id", length=191) */
private $id;
public function __construct(UserIdInterface $id)