Components_Component_Identify::_isDirectory PHP Метод

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

Checks if the provided directory is a directory.
private _isDirectory ( string $path ) : boolean
$path string The path to the directory.
Результат boolean True if it is a directory
    private function _isDirectory($path)
    {
        return !empty($path) && is_dir($path);
    }