Files
AudioCore/plugins/store/gateways/GatewayInterface.php
2026-03-04 20:46:11 +00:00

12 lines
224 B
PHP

<?php
declare(strict_types=1);
namespace Plugins\Store\Gateways;
interface GatewayInterface
{
public function key(): string;
public function label(): string;
public function isEnabled(array $settings): bool;
}