Update website
This commit is contained in:
parent
41ce1aa076
commit
ea0eb1c6e0
4222 changed files with 721797 additions and 14 deletions
19
admin/phpMyAdmin/libraries/classes/Plugins/Plugin.php
Normal file
19
admin/phpMyAdmin/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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue