*/ final class RemoveIncidentUpdateCommand { /** * The incident update to remove. * * @var \CachetHQ\Cachet\Models\IncidentUpdate */ public $incidentUpdate; /** * Create a new remove incident update command instance. * * @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate * * @return void */ public function __construct(IncidentUpdate $incidentUpdate) { $this->incidentUpdate = $incidentUpdate; } }