mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
11 lines
173 B
PHP
11 lines
173 B
PHP
<?php
|
|
declare( strict_types=1 );
|
|
|
|
class WC_Checkout {
|
|
public function get_posted_data() {
|
|
return [];
|
|
}
|
|
|
|
protected function validate_checkout( &$data, &$errors ) {
|
|
}
|
|
}
|