'string', 'status' => 'integer', 'message' => 'string', 'visible' => 'boolean', 'component_id' => 'integer', 'component_status' => 'integer', 'notify' => 'boolean', ]; /** * Create a new update incident command instance. * * @param \CachetHQ\Cachet\Models\Incident $name * @param string $name * @param int $status * @param string $message * @param int $visible * @param int $component_id * @param int $component_status * @param bool $notify * @param string|null $incident_date * * @return void */ public function __construct(Incident $incident, $name, $status, $message, $visible, $component_id, $component_status, $notify, $incident_date = null) { $this->incident = $incident; $this->name = $name; $this->status = $status; $this->message = $message; $this->visible = $visible; $this->component_id = $component_id; $this->component_status = $component_status; $this->notify = $notify; $this->incident_date = $incident_date; } }