Laravel 10.xのartisanの「make:listener」コマンドを解説します。
Description
新しいイベントリスナークラスの作成
Usage
php artisan make:listener [-e|--event [EVENT]] [-f|--force] [--queued] [--test] [--pest] [--] <name>
Arguments
引数 | 必須 | 説明 |
---|---|---|
name | 必須 | イベントリスナー名 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
event | e | - | 待機しているイベントクラス |
force | f | - | リスナーが既に存在する場合でもクラスを作成 |
queued | - | - | イベントリスナーをキューに入れるべきことを示す |
test | - | - | Listenerに付随するPHPUnitのテストを生成 |
pest | - | - | Listenerに付随するPestテストを生成 |
Examples
no options
php artisan make:listener Foo
INFO Listener [app/Listeners/Foo.php] created successfully.
<?php
namespace App\Listeners;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
class Foo
{
/**
* Create the event listener.
*/
public function __construct()
{
//
}
/**
* Handle the event.
*/
public function handle(object $event): void
{
//
}
}
コメント