mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
18 lines
308 B
PHP
18 lines
308 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Automattic\WooCommerce\Admin\Features\PaymentGatewaySuggestions;
|
||
|
|
||
|
class DefaultPaymentGateways
|
||
|
{
|
||
|
public static function get_all(): array
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
|
||
|
public static function get_wcpay_countries(): array
|
||
|
{
|
||
|
return ['US', 'CA', 'GB', 'AU', 'DE', 'FR'];
|
||
|
}
|
||
|
}
|