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

View file

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

View file

@ -2,15 +2,15 @@
/**
* The logging services.
*
* @package Inpsyde\WooCommerce\Logging
* @package WooCommerce\WooCommerce\Logging
*/
declare(strict_types=1);
namespace Inpsyde\WooCommerce\Logging;
namespace WooCommerce\WooCommerce\Logging;
use Inpsyde\WooCommerce\Logging\Logger\NullLogger;
use Inpsyde\WooCommerce\Logging\Logger\WooCommerceLogger;
use WooCommerce\WooCommerce\Logging\Logger\NullLogger;
use WooCommerce\WooCommerce\Logging\Logger\WooCommerceLogger;
use Psr\Container\ContainerInterface;
use Psr\Log\LoggerInterface;

View file

@ -3,12 +3,12 @@
* The Null logger is used, when logging is disabled. It does not log at all
* but complies with the LoggerInterface.
*
* @package Inpsyde\WooCommerce\Logging\Logger
* @package WooCommerce\WooCommerce\Logging\Logger
*/
declare(strict_types=1);
namespace Inpsyde\WooCommerce\Logging\Logger;
namespace WooCommerce\WooCommerce\Logging\Logger;
use Psr\Log\LoggerInterface;
use Psr\Log\LoggerTrait;

View file

@ -5,12 +5,12 @@
*
* This is a decorator that makes any WooCommerce Logger PSR-3-compatible
*
* @package Inpsyde\WooCommerce\Logging\Logger
* @package WooCommerce\WooCommerce\Logging\Logger
*/
declare(strict_types=1);
namespace Inpsyde\WooCommerce\Logging\Logger;
namespace WooCommerce\WooCommerce\Logging\Logger;
use Psr\Log\LoggerInterface;
use Psr\Log\LoggerTrait;

View file

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