Home Documentation Download Pricing Buy Now

[Closed] extra lines generated under Gedmo annotation

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;
asked Mar 23, 2016 in Solved by PaddyLock (310 points)
recategorized May 28, 2016 by ludek.vodicka

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.

...