*/ abstract class AdminUpdatedEvent extends BaseUpdatedEvent { public function getDiscordChannel(): string { return Config::get(ServiceConstants::ADMIN_DISCORD_CHANNEL_QUALIFIED); } public function shouldSendDiscordMessage(): bool { return true; } protected function getDiscordMessageDescription(): string { return "{$this->privateLabel($this->getModel())} '**{$this->getModel()->getName()}**' has been updated."; } }