phpmyadmin/libraries/classes/Providers/ServerVariables/ServerVariablesProviderInterface.php
Maurício Meneghini Fauth 6a2c12bdc8
Add missing traversable type hints
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>
2023-04-02 01:32:12 -03:00

18 lines
414 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Providers\ServerVariables;
interface ServerVariablesProviderInterface
{
public function getVariableType(string $name): string|null;
/** @return mixed[] */
public function getStaticVariables(): array;
public function getDocLinkByNameMariaDb(string $name): string|null;
public function getDocLinkByNameMysql(string $name): string|null;
}