woocommerce-paypal-payments/tests/stubs/AbstractPaymentMethodType.php
2026-05-27 11:39:16 +02:00

14 lines
244 B
PHP

<?php
namespace Automattic\WooCommerce\Blocks\Payments\Integrations;
abstract class AbstractPaymentMethodType {
/**
* Payment method name defined by payment methods extending this class.
*
* @var string
*/
protected $name = '';
}