woocommerce-paypal-payments/tests/stubs/WC_Ajax.php

9 lines
150 B
PHP
Raw Normal View History

2020-08-31 13:03:16 +03:00
<?php
declare( strict_types=1 );
class WC_Ajax {
public static function get_endpoint(string $someEndpoint) : string {
return $someEndpoint;
}
}