Inheritance: extends Illuminate\Console\Command
コード例 #1
0
ファイル: WorkCommand.php プロジェクト: lekongkong/lgequeue
 public function option($key = null)
 {
     $value = parent::option($key);
     return $key == 'queue' ? str_replace('+', ',', $value) : $value;
 }