woocommerce-paypal-payments/tests/stubs/DefaultPaymentGateways.php

18 lines
308 B
PHP
Raw Normal View History

2025-06-27 12:56:12 +04:00
<?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'];
}
}