- Fixes one line doc comments - Fixes parent call spacing - Fixes constant spacing Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
23 lines
417 B
PHP
23 lines
417 B
PHP
<?php
|
|
/**
|
|
* User preferences form
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Config\Forms\Page;
|
|
|
|
use PhpMyAdmin\Config\Forms\BaseForm;
|
|
use PhpMyAdmin\Config\Forms\User\MainForm;
|
|
|
|
class TableStructureForm extends BaseForm
|
|
{
|
|
/** @return array */
|
|
public static function getForms(): array
|
|
{
|
|
return [
|
|
'TableStructure' => MainForm::getForms()['TableStructure'],
|
|
];
|
|
}
|
|
}
|