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,7 +2,7 @@
/**
* The extensions.
*
* @package Inpsyde\PayPalCommerce\Subscription
* @package WooCommerce\PayPalCommerce\Subscription
*/
declare(strict_types=1);

View file

@ -2,12 +2,12 @@
/**
* The module.
*
* @package Inpsyde\PayPalCommerce\Subscription
* @package WooCommerce\PayPalCommerce\Subscription
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription;
namespace WooCommerce\PayPalCommerce\Subscription;
use Dhii\Modular\Module\ModuleInterface;

View file

@ -2,15 +2,15 @@
/**
* The services
*
* @package Inpsyde\PayPalCommerce\Subscription
* @package WooCommerce\PayPalCommerce\Subscription
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription;
namespace WooCommerce\PayPalCommerce\Subscription;
use Inpsyde\PayPalCommerce\Subscription\Helper\SubscriptionHelper;
use Inpsyde\PayPalCommerce\Subscription\Repository\PaymentTokenRepository;
use WooCommerce\PayPalCommerce\Subscription\Helper\SubscriptionHelper;
use WooCommerce\PayPalCommerce\Subscription\Repository\PaymentTokenRepository;
use Psr\Container\ContainerInterface;
return array(

View file

@ -4,12 +4,12 @@
* whether the cart contains a subscription, the current product is
* a subscription or the subscription plugin is activated in the first place.
*
* @package Inpsyde\PayPalCommerce\Subscription\Helper
* @package WooCommerce\PayPalCommerce\Subscription\Helper
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription\Helper;
namespace WooCommerce\PayPalCommerce\Subscription\Helper;
/**
* Class SubscriptionHelper

View file

@ -2,17 +2,17 @@
/**
* The payment token repository returns or deletes payment tokens for users.
*
* @package Inpsyde\PayPalCommerce\Subscription\Repository
* @package WooCommerce\PayPalCommerce\Subscription\Repository
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription\Repository;
namespace WooCommerce\PayPalCommerce\Subscription\Repository;
use Inpsyde\PayPalCommerce\ApiClient\Endpoint\PaymentTokenEndpoint;
use Inpsyde\PayPalCommerce\ApiClient\Entity\PaymentToken;
use Inpsyde\PayPalCommerce\ApiClient\Exception\RuntimeException;
use Inpsyde\PayPalCommerce\ApiClient\Factory\PaymentTokenFactory;
use WooCommerce\PayPalCommerce\ApiClient\Endpoint\PaymentTokenEndpoint;
use WooCommerce\PayPalCommerce\ApiClient\Entity\PaymentToken;
use WooCommerce\PayPalCommerce\ApiClient\Exception\RuntimeException;
use WooCommerce\PayPalCommerce\ApiClient\Factory\PaymentTokenFactory;
/**
* Class PaymentTokenRepository

View file

@ -2,21 +2,21 @@
/**
* Handles subscription renewals.
*
* @package Inpsyde\PayPalCommerce\Subscription
* @package WooCommerce\PayPalCommerce\Subscription
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription;
namespace WooCommerce\PayPalCommerce\Subscription;
use Inpsyde\PayPalCommerce\ApiClient\Endpoint\OrderEndpoint;
use Inpsyde\PayPalCommerce\ApiClient\Entity\Order;
use Inpsyde\PayPalCommerce\ApiClient\Entity\OrderStatus;
use Inpsyde\PayPalCommerce\ApiClient\Entity\PaymentToken;
use Inpsyde\PayPalCommerce\ApiClient\Factory\PayerFactory;
use Inpsyde\PayPalCommerce\ApiClient\Factory\PurchaseUnitFactory;
use Inpsyde\PayPalCommerce\Subscription\Repository\PaymentTokenRepository;
use Inpsyde\PayPalCommerce\WcGateway\Gateway\PayPalGateway;
use WooCommerce\PayPalCommerce\ApiClient\Endpoint\OrderEndpoint;
use WooCommerce\PayPalCommerce\ApiClient\Entity\Order;
use WooCommerce\PayPalCommerce\ApiClient\Entity\OrderStatus;
use WooCommerce\PayPalCommerce\ApiClient\Entity\PaymentToken;
use WooCommerce\PayPalCommerce\ApiClient\Factory\PayerFactory;
use WooCommerce\PayPalCommerce\ApiClient\Factory\PurchaseUnitFactory;
use WooCommerce\PayPalCommerce\Subscription\Repository\PaymentTokenRepository;
use WooCommerce\PayPalCommerce\WcGateway\Gateway\PayPalGateway;
use Psr\Log\LoggerInterface;
/**

View file

@ -2,16 +2,16 @@
/**
* The subscription module.
*
* @package Inpsyde\PayPalCommerce\Subscription
* @package WooCommerce\PayPalCommerce\Subscription
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Subscription;
namespace WooCommerce\PayPalCommerce\Subscription;
use Dhii\Container\ServiceProvider;
use Dhii\Modular\Module\ModuleInterface;
use Inpsyde\PayPalCommerce\WcGateway\Gateway\PayPalGateway;
use WooCommerce\PayPalCommerce\WcGateway\Gateway\PayPalGateway;
use Interop\Container\ServiceProviderInterface;
use Psr\Container\ContainerInterface;