- Fixes one line doc comments - Fixes parent call spacing - Fixes constant spacing Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
18 lines
338 B
PHP
18 lines
338 B
PHP
<?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;
|
|
}
|