Received by email:
First time that entities are exported, I get 2 Column annotations:
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @ORM\Column(test1={item1={method="asdasd"}})
*/
private $name;
Next and following times, second Column annotation is removed:
/**
* @ORM\Column(type="string", length=255, nullable=true)
*
*/
private $name;