[Closed] extra lines generated under Gedmo annotation

0 votes
asked Mar 23, 2016 in Solved by PaddyLock (310 points)
recategorized May 28, 2016 by ludek.vodicka

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;
commented Mar 23, 2016 by ludek.vodicka Skipper developer (140,450 points)

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])

commented May 28, 2016 by ludek.vodicka Skipper developer (140,450 points)

Closed because of lack of information

Please log in or register to answer this question.

...