> */ protected $listen = [ \App\Events\WorkflowCheckNext::class => [ \App\Listeners\CreateWorkflowCheckNextMessage::class, \App\Listeners\SendWorkflowCheckNextNotification::class, ], \App\Events\WorkflowCheckSuccess::class => [ \App\Listeners\CreateWorkflowCheckSuccessMessage::class, \App\Listeners\SendWorkflowCheckSuccessNotification::class, ], \App\Events\WorkflowCheckFailed::class => [ \App\Listeners\CreateWorkflowCheckFailedMessage::class, \App\Listeners\SendWorkflowCheckFailedNotification::class, ], ]; /** * Register any events for your application. */ public function boot(): void { // } /** * Determine if events and listeners should be automatically discovered. */ public function shouldDiscoverEvents(): bool { return false; } }