Slide 7
Slide 7 text
サンプルプログラム
class RunSample extends \Illuminate\Console\Command
{
protected $signature = 'sample:run';
protected $description =
"Laravel の Artisan コマンドで Service クラスの処理を実行できるようにしたもの";
public function handle(\App\Services\SampleService $service): int
{
$this->line('start light process');
$service->lightProcess();
$this->line('start heavy process');
$service->heavyProcess();
return 0;
}
}
7