Closed toshimitsu-sato closed 1 year ago
10.0
8.2.11
No response
illuminate/console/Application/ CommandFinished not working
CommandFinished, which is dispatched when the batch ends, is not fired. This is due to a fix made in response to laravel 10.
https://github.com/laravel/framework/pull/46508
EventServiceProvider The following is written in
EventServiceProvider
/** * The event listener mappings for the application. * * @var array */ protected $listen = [ CommandFinished::class => [ CommandFinishedListener::class ] ];
php artisan batch-name execution
php artisan batch-name
CommandFinishedListener::classnot call
CommandFinishedListener::class
Lumen Version
10.0
PHP Version
8.2.11
Database Driver & Version
No response
Description
illuminate/console/Application/ CommandFinished not working
CommandFinished, which is dispatched when the batch ends, is not fired. This is due to a fix made in response to laravel 10.
https://github.com/laravel/framework/pull/46508
Steps To Reproduce
EventServiceProvider
The following is written inphp artisan batch-name
executionCommandFinishedListener::class
not call