first commit
This commit is contained in:
19
pma/libraries/classes/Plugins/Plugin.php
Normal file
19
pma/libraries/classes/Plugins/Plugin.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user