mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
Fix merge conflicts
This commit is contained in:
commit
baee53e90f
60 changed files with 3162 additions and 366 deletions
|
@ -175,7 +175,8 @@ return array(
|
|||
'webhook.status.assets' => function( ContainerInterface $container ) : WebhooksStatusPageAssets {
|
||||
return new WebhooksStatusPageAssets(
|
||||
$container->get( 'webhook.module-url' ),
|
||||
$container->get( 'ppcp.asset-version' )
|
||||
$container->get( 'ppcp.asset-version' ),
|
||||
$container->get( 'onboarding.environment' )
|
||||
);
|
||||
},
|
||||
|
||||
|
@ -206,8 +207,8 @@ return array(
|
|||
);
|
||||
},
|
||||
|
||||
'webhook.last-webhook-storage' => static function ( ContainerInterface $container ): WebhookInfoStorage {
|
||||
return new WebhookInfoStorage( $container->get( 'webhook.last-webhook-storage.key' ) );
|
||||
'webhook.last-webhook-storage' => static function ( ContainerInterface $container ): WebhookEventStorage {
|
||||
return new WebhookEventStorage( $container->get( 'webhook.last-webhook-storage.key' ) );
|
||||
},
|
||||
'webhook.last-webhook-storage.key' => static function ( ContainerInterface $container ): string {
|
||||
return 'ppcp-last-webhook';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue