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

18 lines
255 B
PHP
Raw Normal View History

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