File "RestoreStatement.php"

Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/phpMyAdmin/vendor/phpmyadmin/sql-parser/src/Statements/RestoreStatement.php
File size: 580 B
MIME-type:
Charset: utf-8

Download   Open   Back

<?php

declare(strict_types=1);

namespace PhpMyAdmin\SqlParser\Statements;

/**
 * `RESTORE` statement.
 *
 * RESTORE TABLE tbl_name [, tbl_name] ... FROM '/path/to/backup/directory'
 */
class RestoreStatement extends MaintenanceStatement
{
    /**
     * Options of this statement.
     *
     * @var array<string, int|array<int, int|string>>
     * @psalm-var array<string, (positive-int|array{positive-int, ('var'|'var='|'expr'|'expr=')})>
     */
    public static $OPTIONS = [
        'TABLE' => 1,

        'FROM' => [
            2,
            'var',
        ],
    ];
}

PHP File Manager