*/ class ReportIncidentUpdateCommandHandler { /** * Handle the report incident command. * * @param \CachetHQ\Cachet\Bus\Commands\IncidentUpdate\ReportIncidentUpdateCommand $command * * @return \CachetHQ\Cachet\Models\IncidentUpdate */ public function handle(ReportIncidentUpdateCommand $command) { $data = [ 'incident_id' => $command->incident->id, 'status' => $command->status, 'message' => $command->message, 'user_id' => $command->user->id, ]; // Create the incident update. $update = IncidentUpdate::create($data); // Update the original incident with the new status. dispatch(new UpdateIncidentCommand( $command->incident, null, $command->status, null, null, null, null, null, null, null, null, [] )); event(new IncidentUpdateWasReportedEvent($update)); return $update; } }