17 lines
375 B
PHP
17 lines
375 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace PhpMyAdmin\Providers\ServerVariables;
|
||
|
|
||
|
interface ServerVariablesProviderInterface
|
||
|
{
|
||
|
public function getVariableType(string $name): ?string;
|
||
|
|
||
|
public function getStaticVariables(): array;
|
||
|
|
||
|
public function getDocLinkByNameMariaDb(string $name): ?string;
|
||
|
|
||
|
public function getDocLinkByNameMysql(string $name): ?string;
|
||
|
}
|