Symfony\Component\Validator\Mapping\Loader\XmlFileLoader::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->loadClassesFromXml();
        }
        return array_keys($this->classes);
    }