这是我使用时的事件类
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
CategoryEvent::class => [
CategoryCreatedListener::class,
]
];
当我运行以下命令时
php artisan event:generate
如果我将命名空间放在事件和侦听器之前,它会在服务提供者目录中创建事件和侦听器
App\Events\CategoryEvent::class
它仍然在 Service Provider Directory 中创建App\Event 和 App\Event如何在 App Namespace 中创建 Event 和 Listener Directory。