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

12 lines
173 B
PHP
Raw Normal View History

2023-02-07 15:30:59 +02:00
<?php
declare( strict_types=1 );
class WC_Checkout {
public function get_posted_data() {
return [];
}
protected function validate_checkout( &$data, &$errors ) {
}
}