mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 12:25:15 +08:00
Add initialization function for PPEC compat. layer
This commit is contained in:
parent
9ca0394d80
commit
0192141805
1 changed files with 11 additions and 0 deletions
|
@ -37,6 +37,7 @@ class CompatModule implements ModuleInterface {
|
|||
* @param ContainerInterface|null $container The Container.
|
||||
*/
|
||||
public function run( ContainerInterface $container ): void {
|
||||
$this->initialize_ppec_compat_layer( $container );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -46,4 +47,14 @@ class CompatModule implements ModuleInterface {
|
|||
*/
|
||||
public function getKey() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets up the PayPal Express Checkout compatibility layer.
|
||||
*
|
||||
* @param ContainerInterface|null $container The Container.
|
||||
* @return void
|
||||
*/
|
||||
private function initialize_ppec_compat_layer( $container ): void {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue