12 lines
224 B
PHP
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;
|
||
|
|
}
|