“Class XXX is not a valid entity or mapped super class” after moving the class in the filesystem

Had this problem – don’t forget the annotation * @ORM\Entity like below:

/**
 * Powma\ServiceBundle\Entity\User
 *
 * @ORM\Entity
 * @ORM\Table(name="users")
 */

Leave a Comment