Neos\Flow\Package\Package::isPathAutoloadEntryPoint PHP 메소드

isPathAutoloadEntryPoint() 보호된 메소드

protected isPathAutoloadEntryPoint ( string $path ) : boolean
$path string
리턴 boolean
    protected function isPathAutoloadEntryPoint($path)
    {
        return array_reduce($this->getFlattenedAutoloadConfiguration(), function ($isAutoloadEntryPoint, $configuration) use($path) {
            $normalizedAutoloadPath = $this->normalizeAutoloadPath($configuration['mappingType'], $configuration['namespace'], $configuration['classPath']);
            if ($path === $normalizedAutoloadPath) {
                return true;
            }
            return $isAutoloadEntryPoint;
        }, false);
    }