Initial dev export (exclude uploads/runtime)
This commit is contained in:
17
plugins/store/gateways/Gateways.php
Normal file
17
plugins/store/gateways/Gateways.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Plugins\Store\Gateways;
|
||||
|
||||
final class Gateways
|
||||
{
|
||||
/**
|
||||
* @return GatewayInterface[]
|
||||
*/
|
||||
public static function all(): array
|
||||
{
|
||||
return [
|
||||
new PaypalGateway(),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user