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

18 lines
255 B
PHP

<?php
declare(strict_types=1);
namespace Plugins\Store\Gateways;
final class Gateways
{
/**
* @return GatewayInterface[]
*/
public static function all(): array
{
return [
new PaypalGateway(),
];
}
}