private function ceType()

in src/LegacyEventMapper.php [219:227]


    private function ceType(string $eventType): string
    {
        if (isset(self::$ceTypeMap[$eventType])) {
            return self::$ceTypeMap[$eventType];
        }

        // Default to the legacy event type if no mapping is found.
        return $eventType;
    }