18 lines
255 B
PHP
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(),
|
|
];
|
|
}
|
|
}
|