The %command.name% command creates or updates an entity and repository class.
php %command.full_name% BlogPost
If the argument is missing, the command will ask for the entity class name interactively.
You can also mark this class as an API Platform resource. A hypermedia CRUD API will
automatically be available for this entity class:
php %command.full_name% --api-resource
Symfony can also broadcast all changes made to the entity to the client using Symfony
UX Turbo.
php %command.full_name% --broadcast
You can also generate all the getter/setter/adder/remover methods
for the properties of existing entities:
php %command.full_name% --regenerate
You can also *overwrite* any existing methods:
php %command.full_name% --regenerate --overwrite