mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* The Axo module services.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Axo
|
|
*/
|
|
|
|
declare( strict_types = 1 );
|
|
|
|
namespace WooCommerce\PayPalCommerce\AxoBlock;
|
|
|
|
use WooCommerce\PayPalCommerce\Assets\AssetGetter;
|
|
use WooCommerce\PayPalCommerce\Assets\AssetGetterFactory;
|
|
use WooCommerce\PayPalCommerce\Button\Assets\SmartButtonInterface;
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
|
|
|
|
return array(
|
|
// If AXO Block is configured and onboarded.
|
|
'axoblock.available' => static function ( ContainerInterface $container ): bool {
|
|
return true;
|
|
},
|
|
'axoblock.asset_getter' => static function ( ContainerInterface $container ): AssetGetter {
|
|
$factory = $container->get( 'assets.asset_getter_factory' );
|
|
assert( $factory instanceof AssetGetterFactory );
|
|
|
|
return $factory->for_module( 'ppcp-axo-block' );
|
|
},
|
|
'axoblock.method' => static function ( ContainerInterface $container ): AxoBlockPaymentMethod {
|
|
return new AxoBlockPaymentMethod(
|
|
$container->get( 'axoblock.asset_getter' ),
|
|
$container->get( 'axo.gateway' ),
|
|
$container->get( 'settings.settings-provider' ),
|
|
$container->get( 'wcgateway.configuration.card-configuration' ),
|
|
$container->get( 'settings.environment' ),
|
|
$container->get( 'wcgateway.asset_getter' ),
|
|
$container->get( 'axo.payment_method_selected_map' ),
|
|
$container->get( 'axo.supported-country-card-type-matrix' )
|
|
);
|
|
},
|
|
);
|