Timber\Loader::rrmdir PHP Метод

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

public static rrmdir ( string | false $dirPath )
$dirPath string | false
    public static function rrmdir($dirPath)
    {
        if (!is_dir($dirPath)) {
            throw new \InvalidArgumentException("{$dirPath} must be a directory");
        }
        if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
            $dirPath .= '/';
        }
        $files = glob($dirPath . '*', GLOB_MARK);
        foreach ($files as $file) {
            if (is_dir($file)) {
                self::rrmdir($file);
            } else {
                unlink($file);
            }
        }
        rmdir($dirPath);
    }