woocommerce-paypal-payments/tests/stubs/WC_Ajax.php
2020-08-31 13:03:16 +03:00

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;
}
}