You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -50,6 +57,8 @@ class MakeEntityCommand extends Command
50
57
{--without-tests : Set this flag if you don\'t want to create tests. This flag is a lower priority than --only-tests.}
51
58
{--without-seeder : Set this flag if you don\'t want to create seeder.}
52
59
60
+
{--only-api : Set this flag if you want to create controller, route, requests, tests.}
61
+
{--only-entity : Set this flag if you want to create migration, model, repository, service, factory, seeder.}
53
62
{--only-model : Set this flag if you want to create only model. This flag is a higher priority than --without-model, --only-migration, --only-tests and --only-repository.}
54
63
{--only-repository : Set this flag if you want to create only repository. This flag is a higher priority than --without-repository, --only-tests and --only-migration.}
55
64
{--only-service : Set this flag if you want to create only service.}
@@ -60,6 +69,8 @@ class MakeEntityCommand extends Command
60
69
{--only-tests : Set this flag if you want to create only tests. This flag is a higher priority than --without-tests.}
61
70
{--only-seeder : Set this flag if you want to create only seeder.}
62
71
72
+
{--methods=CRUD : Set types of methods to create. Affect on routes, requests classes, controller\'s methods and tests methods.}
73
+
63
74
{--i|integer=* : Add integer field to entity.}
64
75
{--I|integer-required=* : Add required integer field to entity. If you want to specify default value you have to do it manually.}
65
76
{--f|float=* : Add float field to entity.}
@@ -98,6 +109,8 @@ class MakeEntityCommand extends Command
0 commit comments