These settings are no longer required as they are guaranteed through other coding standard tools. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
18 lines
273 B
PHP
18 lines
273 B
PHP
<?php
|
|
/**
|
|
* User preferences form
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Config\Forms\Setup;
|
|
|
|
/**
|
|
* Class ExportForm
|
|
* @package PhpMyAdmin\Config\Forms\Setup
|
|
*/
|
|
class ExportForm extends \PhpMyAdmin\Config\Forms\User\ExportForm
|
|
{
|
|
}
|