I get exception Uncaught exception \'Doctrine\\ORM\\Mapping\\MappingException\' with message \'Class \"Users\" is not a valid entity or mapped super class every
Uncaught exception \'Doctrine\\ORM\\Mapping\\MappingException\' with message \'Class \"Users\" is not a valid entity or mapped super class
In my case, I just forgot to add @ORM\Entity, like this:
@ORM\Entity
/** * Project\BackendBundle\Entity\Pedido * * @ORM\Table * @ORM\Entity * @ORM\HasLifecycleCallbacks */ class Pedido