mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-07-28 01:57:35 +08:00
14 lines
244 B
PHP
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 = '';
|
|
}
|
|
|