このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
- 02 Apache2で自己認証ssl [中間証明書の整合性確認]
Tag Cloud
このページへのアクセス
今日: 2 / 昨日: 0
総計: 216
- Dokuwiki.fl8.jp(177)
- bonnie++(2)
- Tag Cloud(1)
- Gallery(1)
- page list(1)
最近の更新
このページへのアクセス
今日: 2 / 昨日: 0
総計: 216
Laravelコマンドから引数が違う時などにヘルプを表示させたい。
下記のようにしておくと、指定の引数以外の時に対象コマンドのヘルプが表示されます。
$this→call('help',['command_name'⇒'コマンド名'])
protected $signature = 'command:TestCommand {arg : check 実行確認 | run 実行 }'; public function handle() { $arg = $this->argument("arg"); switch($arg){ case 'check': $this->test = 1; break; case 'run' : $this->test = 0; break; default: $this->call('help',['command_name'=>'command:TestCommand']); exit; } }