Doctrine\OXM\Storage\FileSystemStorage::prepareStoragePathForClass PHP Метод

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

Build the realpath to save the xml in a specific folder
private prepareStoragePathForClass ( string $className ) : string
$className string
Результат string
    private function prepareStoragePathForClass($className)
    {
        $filePath = $this->buildStoragePath($className);
        if (!file_exists($filePath)) {
            mkdir($filePath, $this->fileModeBits, true);
        }
        return $filePath;
    }