mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
change namespace vendor to WooCommerce
This commit is contained in:
parent
c5899d915c
commit
c788341887
162 changed files with 707 additions and 708 deletions
|
@ -2,11 +2,11 @@
|
|||
/**
|
||||
* The extensions of the session module.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session
|
||||
* @package WooCommerce\PayPalCommerce\Session
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session;
|
||||
namespace WooCommerce\PayPalCommerce\Session;
|
||||
|
||||
return array();
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
/**
|
||||
* The session module.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session
|
||||
* @package WooCommerce\PayPalCommerce\Session
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session;
|
||||
namespace WooCommerce\PayPalCommerce\Session;
|
||||
|
||||
use Dhii\Modular\Module\ModuleInterface;
|
||||
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
/**
|
||||
* The services of the session module.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session
|
||||
* @package WooCommerce\PayPalCommerce\Session
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session;
|
||||
namespace WooCommerce\PayPalCommerce\Session;
|
||||
|
||||
use Dhii\Data\Container\ContainerInterface;
|
||||
use Inpsyde\PayPalCommerce\Session\Cancellation\CancelController;
|
||||
use Inpsyde\PayPalCommerce\Session\Cancellation\CancelView;
|
||||
use WooCommerce\PayPalCommerce\Session\Cancellation\CancelController;
|
||||
use WooCommerce\PayPalCommerce\Session\Cancellation\CancelView;
|
||||
|
||||
return array(
|
||||
'session.handler' => function ( $container ) : SessionHandler {
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
/**
|
||||
* Controlls the cancel mechanism to step out of the PayPal order session.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session\Cancellation
|
||||
* @package WooCommerce\PayPalCommerce\Session\Cancellation
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session\Cancellation;
|
||||
namespace WooCommerce\PayPalCommerce\Session\Cancellation;
|
||||
|
||||
use Inpsyde\PayPalCommerce\Session\SessionHandler;
|
||||
use WooCommerce\PayPalCommerce\Session\SessionHandler;
|
||||
|
||||
/**
|
||||
* Class CancelController
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
/**
|
||||
* Renders the cancel view for the order on the checkout.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session\Cancellation
|
||||
* @package WooCommerce\PayPalCommerce\Session\Cancellation
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session\Cancellation;
|
||||
namespace WooCommerce\PayPalCommerce\Session\Cancellation;
|
||||
|
||||
/**
|
||||
* Class CancelView
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
/**
|
||||
* The Session Handler.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session
|
||||
* @package WooCommerce\PayPalCommerce\Session
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session;
|
||||
namespace WooCommerce\PayPalCommerce\Session;
|
||||
|
||||
use Inpsyde\PayPalCommerce\ApiClient\Entity\Order;
|
||||
use WooCommerce\PayPalCommerce\ApiClient\Entity\Order;
|
||||
|
||||
/**
|
||||
* Class SessionHandler
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
/**
|
||||
* The session module.
|
||||
*
|
||||
* @package Inpsyde\PayPalCommerce\Session
|
||||
* @package WooCommerce\PayPalCommerce\Session
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Inpsyde\PayPalCommerce\Session;
|
||||
namespace WooCommerce\PayPalCommerce\Session;
|
||||
|
||||
use Dhii\Container\ServiceProvider;
|
||||
use Dhii\Modular\Module\ModuleInterface;
|
||||
use Inpsyde\PayPalCommerce\Session\Cancellation\CancelController;
|
||||
use WooCommerce\PayPalCommerce\Session\Cancellation\CancelController;
|
||||
use Interop\Container\ServiceProviderInterface;
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue