*/ class FeatureUpdated extends AdminUpdatedEvent { public function __construct(Feature $feature) { parent::__construct($feature); $this->initializeEmbedFields($feature); } protected function getDiscordMessageDescription(): string { return "Feature '**{$this->getModel()->getName()}**' has been updated."; } public function shouldSendDiscordMessage(): bool { return $this->getModel()->isNullScope(); } }