private function ceService()

in src/LegacyEventMapper.php [229:239]


    private function ceService(string $eventType): string
    {
        foreach (self::$ceServiceMap as $prefix => $ceService) {
            if (0 === strpos($eventType, $prefix)) {
                return $ceService;
            }
        }

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