Shopware\PluginCreator\Services\WorkingDirectoryProvider\RootDetector\ShopwareRootDetector::validateFiles PHP Метод

validateFiles() приватный Метод

private validateFiles ( string $path ) : boolean
$path string
Результат boolean
    private function validateFiles($path)
    {
        foreach (self::FILES as $file) {
            if (!file_exists($path . $file)) {
                return false;
            }
        }
        return true;
    }