Neos\Flow\Reflection\ReflectionService::prepareClassReflectionForUsage PHP Method

prepareClassReflectionForUsage() protected method

Initializes the ReflectionService, cleans the given class name and finally reflects the class if necessary.
protected prepareClassReflectionForUsage ( string $className ) : string
$className string
return string The cleaned class name
    protected function prepareClassReflectionForUsage($className)
    {
        if (!$this->initialized) {
            $this->initialize();
        }
        $className = $this->cleanClassName($className);
        $this->loadOrReflectClassIfNecessary($className);
        return $className;
    }
ReflectionService