'blue', self::WARNING => 'yellow', self::ERROR => 'orange', self::CRITICAL => 'red', }; } public function getEmoji(): string { return match ($this) { self::INFO => 'ℹ️', self::WARNING => '⚠️', self::ERROR => '❌', self::CRITICAL => '🚨', }; } }