hskyzhou / generator
可以生成service的生成器
2.2
2020-07-13 09:21 UTC
Requires
- php: >=5.4
- kkszymanowski/traitor: ^0.2.0
README
hsky:controller -h 查看帮助
hsky:controller Backend/User/Login
- 会自动在app/Http/Controllers/Backend/User下面创建LoginController
- 会自动在app/Http/Requests/Backend/User下面创建LoginRequest
- 会自动在app/Services下面创建UserService
- 会咨询创建entity的name,会生成对应的model,repository, interface
- 会自动在app/Exceptions/User下面创建Create, Update, Delete的exception
- 如果ErrorCode如果不存在会自动创建
hsky:service User
- 会自动在app/Services下面创建UserService
- 会咨询创建entity的name,会生成对应的model,repository, interface
- 会自动在app/Exceptions/User下面创建Create, Update, Delete的exception
- 如果ErrorCode如果不存在会自动创建
hsky:exception User/Create
- 会自动在app/Exceptions/User下面创建CreateException
- 如果ErrorCode如果不存在会自动创建