Files
AudioCore/plugins/store/gateways/GatewayInterface.php

12 lines
224 B
PHP
Raw Normal View History

<?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;
}