GeneratorBundle icon indicating copy to clipboard operation
GeneratorBundle copied to clipboard

Code generation tools for Symfony3.

Results 6 GeneratorBundle issues
Sort by recently updated
recently updated
newest added

Hi, After invoking php bin/console remg:generate:entity, whatever I type as the name of the entity, I now get: In ClassMetadataInfo.php line 3265: Notice: Trying to get property of non-object And...

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...

Can I use your bundle like follows? php bin/console doctrine:generate:entity --entity AppBundle:Account --no-interaction --format=annotation --fields="accountTypeId:integer accountNumber:integer title:string(length=255) description:text createdAt:datetime updatedAt:datetime" ___ relation Related"" ___