Version Description
- 2022-10-04 =
- Fix - Fix fatal error thrown during the renewal order payment flow when the store doesn't have the WCPay Subscriptions feature enabled
Download this release
Release Info
| Developer | automattic |
| Plugin | |
| Version | 4.8.1 |
| Comparing to | |
| See all releases | |
Code changes from version 4.8.0 to 4.8.1
- changelog.txt +3 -0
- includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php +25 -4
- languages/woocommerce-payments.pot +13 -13
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +2 -2
- vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
- vendor/jetpack-autoloader/class-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-container.php +1 -1
- vendor/jetpack-autoloader/class-hook-manager.php +1 -1
- vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
- vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
- vendor/jetpack-autoloader/class-path-processor.php +1 -1
- vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
- vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
- vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
- woocommerce-payments.php +1 -1
changelog.txt
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
*** WooCommerce Payments Changelog ***
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
= 4.8.0 - 2022-09-29 =
|
| 4 |
* Add - Add bundle size check for PR's.
|
| 5 |
* Add - Allow subscription processing via WooPay.
|
| 1 |
*** WooCommerce Payments Changelog ***
|
| 2 |
|
| 3 |
+
= 4.8.1 - 2022-10-04 =
|
| 4 |
+
* Fix - Fix fatal error thrown during the renewal order payment flow when the store doesn't have the WCPay Subscriptions feature enabled
|
| 5 |
+
|
| 6 |
= 4.8.0 - 2022-09-29 =
|
| 7 |
* Add - Add bundle size check for PR's.
|
| 8 |
* Add - Allow subscription processing via WooPay.
|
includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php
CHANGED
|
@@ -266,10 +266,8 @@ trait WC_Payment_Gateway_WCPay_Subscriptions_Trait {
|
|
| 266 |
}
|
| 267 |
|
| 268 |
// Exit early if the order belongs to a WCPay Subscription. The payment will be processed by the subscription via webhooks.
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
return;
|
| 272 |
-
}
|
| 273 |
}
|
| 274 |
|
| 275 |
try {
|
|
@@ -770,4 +768,27 @@ trait WC_Payment_Gateway_WCPay_Subscriptions_Trait {
|
|
| 770 |
$wp->query_vars['order-pay'] = $this->order_pay_var;
|
| 771 |
}
|
| 772 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 773 |
}
|
| 266 |
}
|
| 267 |
|
| 268 |
// Exit early if the order belongs to a WCPay Subscription. The payment will be processed by the subscription via webhooks.
|
| 269 |
+
if ( $this->is_wcpay_subscription_renewal_order( $renewal_order ) ) {
|
| 270 |
+
return;
|
|
|
|
|
|
|
| 271 |
}
|
| 272 |
|
| 273 |
try {
|
| 768 |
$wp->query_vars['order-pay'] = $this->order_pay_var;
|
| 769 |
}
|
| 770 |
}
|
| 771 |
+
|
| 772 |
+
/**
|
| 773 |
+
* Checks if a renewal order is linked to a WCPay subscription.
|
| 774 |
+
*
|
| 775 |
+
* @param WC_Order $renewal_order The renewal order to check.
|
| 776 |
+
* @return bool True if the renewal order is linked to a renewal order. Otherwise false.
|
| 777 |
+
*/
|
| 778 |
+
private function is_wcpay_subscription_renewal_order( WC_Order $renewal_order ) {
|
| 779 |
+
|
| 780 |
+
// Exit early if WCPay subscriptions functionality isn't enabled.
|
| 781 |
+
if ( ! WC_Payments_Features::is_wcpay_subscriptions_enabled() ) {
|
| 782 |
+
return false;
|
| 783 |
+
}
|
| 784 |
+
|
| 785 |
+
// Check if the renewal order is linked to a subscription which is a WCPay Subscription.
|
| 786 |
+
foreach ( wcs_get_subscriptions_for_renewal_order( $renewal_order ) as $subscription ) {
|
| 787 |
+
if ( WC_Payments_Subscription_Service::is_wcpay_subscription( $subscription ) ) {
|
| 788 |
+
return true;
|
| 789 |
+
}
|
| 790 |
+
}
|
| 791 |
+
|
| 792 |
+
return false;
|
| 793 |
+
}
|
| 794 |
}
|
languages/woocommerce-payments.pot
CHANGED
|
@@ -2,10 +2,10 @@
|
|
| 2 |
# This file is distributed under the same license as the WooCommerce Payments package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: WooCommerce Payments 4.8.
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://wordpress.org/support/plugin/woocommerce-payments\n"
|
| 8 |
-
"POT-Creation-Date: 2022-
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -702,7 +702,7 @@ msgid "Your payment was not processed."
|
|
| 702 |
msgstr ""
|
| 703 |
|
| 704 |
#: includes/class-wc-payment-gateway-wcpay.php:970
|
| 705 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 706 |
#. translators: %1: the failed payment amount, %2: error message
|
| 707 |
msgid ""
|
| 708 |
"A payment of %1$s <strong>failed</strong> to complete with the following "
|
|
@@ -1642,31 +1642,31 @@ msgid ""
|
|
| 1642 |
"done is for you to authorize the payment with your bank."
|
| 1643 |
msgstr ""
|
| 1644 |
|
| 1645 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1646 |
msgid "Saved payment method"
|
| 1647 |
msgstr ""
|
| 1648 |
|
| 1649 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1650 |
msgid "A customer saved payment method was not selected for this order."
|
| 1651 |
msgstr ""
|
| 1652 |
|
| 1653 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1654 |
msgid "The saved payment method selected is invalid or does not exist."
|
| 1655 |
msgstr ""
|
| 1656 |
|
| 1657 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1658 |
msgid "The saved payment method selected does not belong to this order's customer."
|
| 1659 |
msgstr ""
|
| 1660 |
|
| 1661 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1662 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1663 |
msgid "Please select a payment method"
|
| 1664 |
msgstr ""
|
| 1665 |
|
| 1666 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1667 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1668 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1669 |
-
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:
|
| 1670 |
#. translators: 1: payment method likely credit card, 2: last 4 digit.
|
| 1671 |
msgid "%1$s ending in %2$s"
|
| 1672 |
msgstr ""
|
| 2 |
# This file is distributed under the same license as the WooCommerce Payments package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: WooCommerce Payments 4.8.1\n"
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://wordpress.org/support/plugin/woocommerce-payments\n"
|
| 8 |
+
"POT-Creation-Date: 2022-10-04 17:14:20+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 702 |
msgstr ""
|
| 703 |
|
| 704 |
#: includes/class-wc-payment-gateway-wcpay.php:970
|
| 705 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:285
|
| 706 |
#. translators: %1: the failed payment amount, %2: error message
|
| 707 |
msgid ""
|
| 708 |
"A payment of %1$s <strong>failed</strong> to complete with the following "
|
| 1642 |
"done is for you to authorize the payment with your bank."
|
| 1643 |
msgstr ""
|
| 1644 |
|
| 1645 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:332
|
| 1646 |
msgid "Saved payment method"
|
| 1647 |
msgstr ""
|
| 1648 |
|
| 1649 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:403
|
| 1650 |
msgid "A customer saved payment method was not selected for this order."
|
| 1651 |
msgstr ""
|
| 1652 |
|
| 1653 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:412
|
| 1654 |
msgid "The saved payment method selected is invalid or does not exist."
|
| 1655 |
msgstr ""
|
| 1656 |
|
| 1657 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:419
|
| 1658 |
msgid "The saved payment method selected does not belong to this order's customer."
|
| 1659 |
msgstr ""
|
| 1660 |
|
| 1661 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:499
|
| 1662 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:553
|
| 1663 |
msgid "Please select a payment method"
|
| 1664 |
msgstr ""
|
| 1665 |
|
| 1666 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:587
|
| 1667 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:606
|
| 1668 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:647
|
| 1669 |
+
#: includes/compat/subscriptions/trait-wc-payment-gateway-wcpay-subscriptions.php:655
|
| 1670 |
#. translators: 1: payment method likely credit card, 2: last 4 digit.
|
| 1671 |
msgid "%1$s ending in %2$s"
|
| 1672 |
msgstr ""
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Tags: woocommerce, payment, payment request, credit card, automattic
|
|
| 4 |
Requires at least: 5.8
|
| 5 |
Tested up to: 6.0
|
| 6 |
Requires PHP: 7.0
|
| 7 |
-
Stable tag: 4.8.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -98,6 +98,9 @@ Please note that our support for the checkout block is still experimental and th
|
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
|
|
|
|
|
|
|
|
|
| 101 |
= 4.8.0 - 2022-09-29 =
|
| 102 |
* Add - Add bundle size check for PR's.
|
| 103 |
* Add - Allow subscription processing via WooPay.
|
| 4 |
Requires at least: 5.8
|
| 5 |
Tested up to: 6.0
|
| 6 |
Requires PHP: 7.0
|
| 7 |
+
Stable tag: 4.8.1
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 98 |
|
| 99 |
== Changelog ==
|
| 100 |
|
| 101 |
+
= 4.8.1 - 2022-10-04 =
|
| 102 |
+
* Fix - Fix fatal error thrown during the renewal order payment flow when the store doesn't have the WCPay Subscriptions feature enabled
|
| 103 |
+
|
| 104 |
= 4.8.0 - 2022-09-29 =
|
| 105 |
* Add - Add bundle size check for PR's.
|
| 106 |
* Add - Allow subscription processing via WooPay.
|
vendor/autoload.php
CHANGED
|
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
|
|
| 9 |
|
| 10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 11 |
|
| 12 |
-
return
|
| 9 |
|
| 10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 11 |
|
| 12 |
+
return ComposerAutoloaderInit9735feb45e6b103ab9db56f90627395c::getLoader();
|
vendor/autoload_packages.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -24,18 +24,18 @@ class ComposerAutoloaderInitf76fabfaa7b2bab1d5c8eb35c79f64bb
|
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
-
spl_autoload_register(array('
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
| 29 |
-
spl_autoload_unregister(array('
|
| 30 |
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
-
call_user_func(\Composer\Autoload\
|
| 33 |
|
| 34 |
$loader->register(true);
|
| 35 |
|
| 36 |
-
$includeFiles = \Composer\Autoload\
|
| 37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 38 |
-
|
| 39 |
}
|
| 40 |
|
| 41 |
return $loader;
|
|
@@ -47,7 +47,7 @@ class ComposerAutoloaderInitf76fabfaa7b2bab1d5c8eb35c79f64bb
|
|
| 47 |
* @param string $file
|
| 48 |
* @return void
|
| 49 |
*/
|
| 50 |
-
function
|
| 51 |
{
|
| 52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit9735feb45e6b103ab9db56f90627395c
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
+
spl_autoload_register(array('ComposerAutoloaderInit9735feb45e6b103ab9db56f90627395c', 'loadClassLoader'), true, true);
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
| 29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit9735feb45e6b103ab9db56f90627395c', 'loadClassLoader'));
|
| 30 |
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit9735feb45e6b103ab9db56f90627395c::getInitializer($loader));
|
| 33 |
|
| 34 |
$loader->register(true);
|
| 35 |
|
| 36 |
+
$includeFiles = \Composer\Autoload\ComposerStaticInit9735feb45e6b103ab9db56f90627395c::$files;
|
| 37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 38 |
+
composerRequire9735feb45e6b103ab9db56f90627395c($fileIdentifier, $file);
|
| 39 |
}
|
| 40 |
|
| 41 |
return $loader;
|
| 47 |
* @param string $file
|
| 48 |
* @return void
|
| 49 |
*/
|
| 50 |
+
function composerRequire9735feb45e6b103ab9db56f90627395c($fileIdentifier, $file)
|
| 51 |
{
|
| 52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
|
|
@@ -292,9 +292,9 @@ class ComposerStaticInitf76fabfaa7b2bab1d5c8eb35c79f64bb
|
|
| 292 |
public static function getInitializer(ClassLoader $loader)
|
| 293 |
{
|
| 294 |
return \Closure::bind(function () use ($loader) {
|
| 295 |
-
$loader->prefixLengthsPsr4 =
|
| 296 |
-
$loader->prefixDirsPsr4 =
|
| 297 |
-
$loader->classMap =
|
| 298 |
|
| 299 |
}, null, ClassLoader::class);
|
| 300 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit9735feb45e6b103ab9db56f90627395c
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
|
| 292 |
public static function getInitializer(ClassLoader $loader)
|
| 293 |
{
|
| 294 |
return \Closure::bind(function () use ($loader) {
|
| 295 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit9735feb45e6b103ab9db56f90627395c::$prefixLengthsPsr4;
|
| 296 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit9735feb45e6b103ab9db56f90627395c::$prefixDirsPsr4;
|
| 297 |
+
$loader->classMap = ComposerStaticInit9735feb45e6b103ab9db56f90627395c::$classMap;
|
| 298 |
|
| 299 |
}, null, ClassLoader::class);
|
| 300 |
}
|
vendor/composer/installed.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
'name' => 'woocommerce/payments',
|
| 4 |
'pretty_version' => 'dev-trunk',
|
| 5 |
'version' => 'dev-trunk',
|
| 6 |
-
'reference' => '
|
| 7 |
'type' => 'wordpress-plugin',
|
| 8 |
'install_path' => __DIR__ . '/../../',
|
| 9 |
'aliases' => array(),
|
|
@@ -196,7 +196,7 @@
|
|
| 196 |
'woocommerce/payments' => array(
|
| 197 |
'pretty_version' => 'dev-trunk',
|
| 198 |
'version' => 'dev-trunk',
|
| 199 |
-
'reference' => '
|
| 200 |
'type' => 'wordpress-plugin',
|
| 201 |
'install_path' => __DIR__ . '/../../',
|
| 202 |
'aliases' => array(),
|
| 3 |
'name' => 'woocommerce/payments',
|
| 4 |
'pretty_version' => 'dev-trunk',
|
| 5 |
'version' => 'dev-trunk',
|
| 6 |
+
'reference' => '8f58480590cff784080706f0c60677fb5ba12827',
|
| 7 |
'type' => 'wordpress-plugin',
|
| 8 |
'install_path' => __DIR__ . '/../../',
|
| 9 |
'aliases' => array(),
|
| 196 |
'woocommerce/payments' => array(
|
| 197 |
'pretty_version' => 'dev-trunk',
|
| 198 |
'version' => 'dev-trunk',
|
| 199 |
+
'reference' => '8f58480590cff784080706f0c60677fb5ba12827',
|
| 200 |
'type' => 'wordpress-plugin',
|
| 201 |
'install_path' => __DIR__ . '/../../',
|
| 202 |
'aliases' => array(),
|
vendor/jetpack-autoloader/class-autoloader-handler.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-autoloader-locator.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-autoloader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-container.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-hook-manager.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-latest-autoloader-guard.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-manifest-reader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-path-processor.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-php-autoloader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-plugin-locator.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-plugins-handler.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-shutdown-handler.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-version-loader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-version-selector.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp9735feb45e6b103ab9db56f90627395c;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
woocommerce-payments.php
CHANGED
|
@@ -12,7 +12,7 @@
|
|
| 12 |
* WC tested up to: 6.9.0
|
| 13 |
* Requires at least: 5.8
|
| 14 |
* Requires PHP: 7.0
|
| 15 |
-
* Version: 4.8.
|
| 16 |
*
|
| 17 |
* @package WooCommerce\Payments
|
| 18 |
*/
|
| 12 |
* WC tested up to: 6.9.0
|
| 13 |
* Requires at least: 5.8
|
| 14 |
* Requires PHP: 7.0
|
| 15 |
+
* Version: 4.8.1
|
| 16 |
*
|
| 17 |
* @package WooCommerce\Payments
|
| 18 |
*/
|
