mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-01 02:37:18 +08:00
18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
/**
|
|
* The constants for handling custom_id in the webhook requests.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Webhooks
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Webhooks;
|
|
|
|
/**
|
|
* Interface CustomIds
|
|
*/
|
|
interface CustomIds {
|
|
|
|
public const CUSTOMER_ID_PREFIX = 'pcp_customer_';
|
|
}
|