/
var
/
www
/
barefootlaw.org
/
db
/
libraries
/
classes
/
Providers
/
ServerVariables
/
Upload File
HOME
<?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; }