woocommerce-paypal-payments/tests/stubs/WC_Ajax.php
2025-01-14 15:21:34 +01:00

9 lines
154 B
PHP

<?php
declare( strict_types = 1 );
class WC_Ajax {
public static function get_endpoint( string $someEndpoint ) : string {
return $someEndpoint;
}
}