File "Plugin.php"
Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/phpMyAdmin/libraries/classes/Plugins/Plugin.php
File size: 350 B
MIME-type:
Charset: utf-8
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Plugins;
use PhpMyAdmin\Properties\Plugins\PluginPropertyItem;
interface Plugin
{
/**
* @psalm-return non-empty-lowercase-string
*/
public function getName(): string;
public function getProperties(): PluginPropertyItem;
public static function isAvailable(): bool;
}