Jibundeyare
Jibundeyare
When I use this bundle with symfony 3.4, I get the following error when trying to create an entity. ``` Entity name: > App\Entity\Post [ERROR] The bundle "App" does not...
When I add a `*ToMany` association mapping on the `Tag` class, between `Tag` and `Post` classes, the generator creates a `remove*()` method wich does not `return $this` : ``` /**...
When I add a `ManyToOne` association mapping to the `Category`, class between `Category` and `Post` classes, I expect the generator to add also these methods : ``` /** * Add...
When I add a `ManyToMany` association mapping to the `Post`, class between `Post` and `Category` classes, I expect the generator to add also this method : ``` /** * Set...