Bolt\Exception\LowLevelDatabaseException::nonexistantFolder PHP Метод

nonexistantFolder() публичный статический Метод

public static nonexistantFolder ( $path )
    public static function nonexistantFolder($path)
    {
        return static::invalidPath('folder', $path, 'does not exist');
    }

Usage Example

Пример #1
0
 protected function doDatabaseSqliteCheck($config)
 {
     if (!$this->sqliteLoaded) {
         throw LowLevelDatabaseException::missingDriver('SQLite', 'pdo_sqlite');
     }
     // If in-memory connection, skip path checks
     if (isset($config['memory']) && $config['memory'] === true) {
         return;
     }
     // If the file is present, make sure it is writable
     $file = $config['path'];
     if (file_exists($file)) {
         if (!is_writable($file)) {
             throw LowLevelDatabaseException::unwritableFile($file);
         }
         return;
     }
     // If the file isn't present, make sure the directory
     // exists and is writable so the file can be created
     $dir = dirname($file);
     if (!file_exists($dir)) {
         throw LowLevelDatabaseException::nonexistantFolder($dir);
     }
     if (!is_writable($dir)) {
         throw LowLevelDatabaseException::unwritableFolder($dir);
     }
 }
All Usage Examples Of Bolt\Exception\LowLevelDatabaseException::nonexistantFolder