mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-03 08:37:53 +08:00
9 lines
No EOL
150 B
PHP
9 lines
No EOL
150 B
PHP
<?php
|
|
declare( strict_types=1 );
|
|
|
|
class WC_Ajax {
|
|
|
|
public static function get_endpoint(string $someEndpoint) : string {
|
|
return $someEndpoint;
|
|
}
|
|
} |