Neos\Flow\Property\PropertyMapper::getTypeConverterImplementationClassNames PHP Method

getTypeConverterImplementationClassNames() public static method

Returns all class names implementing the TypeConverterInterface.
public static getTypeConverterImplementationClassNames ( Neos\Flow\ObjectManagement\ObjectManagerInterface $objectManager ) : array
$objectManager Neos\Flow\ObjectManagement\ObjectManagerInterface
return array Array of type converter implementations
    public static function getTypeConverterImplementationClassNames($objectManager)
    {
        $reflectionService = $objectManager->get(ReflectionService::class);
        return $reflectionService->getAllImplementationClassNamesForInterface(TypeConverterInterface::class);
    }