Symfony\Component\Validator\Mapping\Loader\YamlFileLoader::getMappedClasses PHP Method

getMappedClasses() public method

Return the names of the classes mapped in this file.
public getMappedClasses ( ) : string[]
return string[] The classes names
    public function getMappedClasses()
    {
        if (null === $this->classes) {
            $this->loadClassesFromYaml();
        }
        return array_keys($this->classes);
    }