*/ final class IncidentUpdateWasRemovedEvent implements IncidentUpdateEventInterface { /** * The incident update that has been removed. * * @var \CachetHQ\Cachet\Models\IncidentUpdate */ public $update; /** * Create a new incident update was removed event instance. * * @param \CachetHQ\Cachet\Models\IncidentUpdate $update * * @return void */ public function __construct(IncidentUpdate $update) { $this->update = $update; } }