Laravel 10でのCommandクラスの変更

Laravel 10 ではCommnadクラスを生成したときのコードにコンストラクタが記述されなくなりました。

代わりに handle関数にパラメータを追加すると、そこにDIしてくれるようになったみたいです。

多分コンストラクタに重い処理を書けなくするためじゃないかと思います。

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class ExampleCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'command:name';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Execute the console command.
     */
    public function handle(): void
    {
        //
    }
}