Neos\Flow\Validation\ValidatorResolver::getPolyTypeObjectValidatorImplementationClassNames PHP Method

getPolyTypeObjectValidatorImplementationClassNames() public static method

Returns a map of object validator class names.
public static getPolyTypeObjectValidatorImplementationClassNames ( Neos\Flow\ObjectManagement\ObjectManagerInterface $objectManager ) : array
$objectManager Neos\Flow\ObjectManagement\ObjectManagerInterface
return array Array of object validator class names
    public static function getPolyTypeObjectValidatorImplementationClassNames($objectManager)
    {
        $reflectionService = $objectManager->get(ReflectionService::class);
        $result = $reflectionService->getAllImplementationClassNamesForInterface(Validator\PolyTypeObjectValidatorInterface::class);
        return $result;
    }