Replace array type hint with mixed[] type hint, since it means the same. This way it's possible to require traversable type hint for new code. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
21 lines
387 B
PHP
21 lines
387 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 DbStructureForm extends BaseForm
|
|
{
|
|
/** @return mixed[] */
|
|
public static function getForms(): array
|
|
{
|
|
return ['DbStructure' => MainForm::getForms()['DbStructure']];
|
|
}
|
|
}
|