Neos\Flow\Core\ClassLoader::buildClassPathWithPsr0 PHP Method

buildClassPathWithPsr0() protected method

Try to build a path to a class according to PSR-0 rules.
protected buildClassPathWithPsr0 ( array $classNameParts, string $classPath ) : string
$classNameParts array Parts of the FQ classname.
$classPath string Already detected class path to a possible package.
return string
    protected function buildClassPathWithPsr0($classNameParts, $classPath)
    {
        $fileName = implode('/', $classNameParts) . '.php';
        return $classPath . $fileName;
    }