17 lines
253 B
PHP
17 lines
253 B
PHP
<?php
|
|
/**
|
|
* User preferences form
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Config\Forms\Setup;
|
|
|
|
/**
|
|
* @package PhpMyAdmin\Config\Forms\Setup
|
|
*/
|
|
class ExportForm extends \PhpMyAdmin\Config\Forms\User\ExportForm
|
|
{
|
|
}
|