0 votes

I am using Symfony2 and Doctrine 2.

Each time I export I get an extra line (asterix) generated under the Gedmo annotation. For example, from this:

/**
 * @var string $updatedBy
 *
 *
 * @ORM\Column(type="string", nullable=true, name="updatedBy")
 * @Gedmo\Blameable(on="update")
 * 
 */
private $updatedBy;

To this

/**
 * @var string $updatedBy
 *
 *
 * @ORM\Column(type="string", nullable=true, name="updatedBy")
 * @Gedmo\Blameable(on="update")
 * 
 *
 */
private $updatedBy;
in Solved by (310 points)
recategorized by

What version of Skipper are you using? Simillar bug was fixed some time ago. In case this issue happens in latest 3.2.6, please send me testing project together with testing .php file where we can reproduce this issue (to [email protected])

Closed because of lack of information

Please log in or register to answer this question.