change namespace vendor to WooCommerce

This commit is contained in:
David Remer 2020-09-11 14:11:10 +03:00
parent c5899d915c
commit c788341887
162 changed files with 707 additions and 708 deletions

View file

@ -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();

View file

@ -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;

View file

@ -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 {

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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;