mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-05-02 05:02:40 +08:00
13 lines
368 B
PHP
13 lines
368 B
PHP
<?php
|
|
|
|
/**
|
|
* The agentic commerce module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\AgenticCommerce
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\AgenticCommerce;
|
|
|
|
return static function (): \WooCommerce\PayPalCommerce\AgenticCommerce\AgenticCommerceModule {
|
|
return new \WooCommerce\PayPalCommerce\AgenticCommerce\AgenticCommerceModule();
|
|
};
|