mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-04 03:40:45 +08:00
9 lines
154 B
PHP
9 lines
154 B
PHP
<?php
|
|
declare( strict_types = 1 );
|
|
|
|
class WC_Ajax {
|
|
|
|
public static function get_endpoint( string $someEndpoint ) : string {
|
|
return $someEndpoint;
|
|
}
|
|
}
|