*/ 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; } /** * Get the event description. * * @return string */ public function __toString() { return 'Incident Update was removed.'; } }