message = $message; return $this; } public function dispatch(): void { event($this); } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn() { return [ new Channel($this->channel), new Channel('jobs'), ]; } public function shouldReload(): static { $this->reload = true; return $this; } }