https://github.com/shimabox/class_file_generator
The class file generation by the command of Laravel.
https://github.com/shimabox/class_file_generator
laravel
Last synced: about 1 month ago
JSON representation
The class file generation by the command of Laravel.
- Host: GitHub
- URL: https://github.com/shimabox/class_file_generator
- Owner: shimabox
- License: mit
- Created: 2019-11-23T02:47:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-25T23:10:14.000Z (over 5 years ago)
- Last Synced: 2025-01-31T08:14:27.603Z (3 months ago)
- Topics: laravel
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# class_file_generator
The class file generation by the command of Laravel.## Help
```sh
$ php artisan command:classfile-gen -hDescription:
与えられた引数に従ってクラスファイルの雛形を作成しますUsage:
command:classfile-gen [options] [--]Arguments:
namespace 名前空間を''で囲って入力してください
classname クラス名を入力してください (,区切りで複数作成可能です)Options:
-p, --parent[=PARENT] 親クラス名を''で囲って入力してください
-i, --interface[=INTERFACE] インターフェイス名を''で囲って入力してください
-u, --use[=USE] useするクラス名を''で囲って入力してください (,区切りで複数指定可能です)
-t, --trait[=TRAIT] traitで使うクラス名を''で囲って入力してください
--nonstrict declare(strict_types=1); が必要ない場合指定してください
-h, --help Display this help message
```