Version Description
2021-04-15 =
WooCommerce
- Fix - Can't grant permission for download from order details page. #29691
Download this release
Release Info
Developer | konamiman |
Plugin | WooCommerce |
Version | 5.2.2 |
Comparing to | |
See all releases |
Code changes from version 5.2.1 to 5.2.2
- i18n/languages/woocommerce.pot +2 -2
- includes/class-wc-ajax.php +1 -1
- includes/class-woocommerce.php +1 -1
- readme.txt +7 -1
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +5 -5
- vendor/composer/jetpack_autoload_classmap.php +176 -176
- 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-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
- woocommerce.php +1 -1
i18n/languages/woocommerce.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WooCommerce 5.2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2021-04-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: woocommerce\n"
|
2 |
# This file is distributed under the same license as the WooCommerce plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce 5.2.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2021-04-15T08:58:00+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: woocommerce\n"
|
includes/class-wc-ajax.php
CHANGED
@@ -805,7 +805,7 @@ class WC_AJAX {
|
|
805 |
|
806 |
if ( ! empty( $files ) ) {
|
807 |
foreach ( $files as $download_id => $file ) {
|
808 |
-
$inserted_id = wc_downloadable_file_permission( $download_id, $
|
809 |
if ( $inserted_id ) {
|
810 |
$download = new WC_Customer_Download( $inserted_id );
|
811 |
$loop ++;
|
805 |
|
806 |
if ( ! empty( $files ) ) {
|
807 |
foreach ( $files as $download_id => $file ) {
|
808 |
+
$inserted_id = wc_downloadable_file_permission( $download_id, $product_id, $order );
|
809 |
if ( $inserted_id ) {
|
810 |
$download = new WC_Customer_Download( $inserted_id );
|
811 |
$loop ++;
|
includes/class-woocommerce.php
CHANGED
@@ -23,7 +23,7 @@ final class WooCommerce {
|
|
23 |
*
|
24 |
* @var string
|
25 |
*/
|
26 |
-
public $version = '5.2.
|
27 |
|
28 |
/**
|
29 |
* WooCommerce Schema version.
|
23 |
*
|
24 |
* @var string
|
25 |
*/
|
26 |
+
public $version = '5.2.2';
|
27 |
|
28 |
/**
|
29 |
* WooCommerce Schema version.
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: e-commerce, store, sales, sell, woo, shop, cart, checkout, downloadable, d
|
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.7
|
6 |
Requires PHP: 7.0
|
7 |
-
Stable tag: 5.2.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -160,6 +160,12 @@ WooCommerce comes with some sample data you can use to see how products look; im
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
= 5.2.1 2021-04-14 =
|
164 |
|
165 |
**WooCommerce**
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.7
|
6 |
Requires PHP: 7.0
|
7 |
+
Stable tag: 5.2.2
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
160 |
|
161 |
== Changelog ==
|
162 |
|
163 |
+
= 5.2.2 2021-04-15 =
|
164 |
+
|
165 |
+
**WooCommerce**
|
166 |
+
|
167 |
+
* Fix - Can't grant permission for download from order details page. #29691
|
168 |
+
|
169 |
= 5.2.1 2021-04-14 =
|
170 |
|
171 |
**WooCommerce**
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInite7838abe751421865f42aa61338ab306::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\jpe7838abe751421865f42aa61338ab306;
|
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 |
|
@@ -22,15 +22,15 @@ class ComposerAutoloaderInitc6254936a0f7cd24a79888563e5b629b
|
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
-
spl_autoload_register(array('
|
26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
-
spl_autoload_unregister(array('
|
28 |
|
29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
if ($useStaticLoader) {
|
31 |
require_once __DIR__ . '/autoload_static.php';
|
32 |
|
33 |
-
call_user_func(\Composer\Autoload\
|
34 |
} else {
|
35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInite7838abe751421865f42aa61338ab306
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
+
spl_autoload_register(array('ComposerAutoloaderInite7838abe751421865f42aa61338ab306', 'loadClassLoader'), true, true);
|
26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInite7838abe751421865f42aa61338ab306', 'loadClassLoader'));
|
28 |
|
29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
if ($useStaticLoader) {
|
31 |
require_once __DIR__ . '/autoload_static.php';
|
32 |
|
33 |
+
call_user_func(\Composer\Autoload\ComposerStaticInite7838abe751421865f42aa61338ab306::getInitializer($loader));
|
34 |
} else {
|
35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'S' =>
|
@@ -840,10 +840,10 @@ class ComposerStaticInitc6254936a0f7cd24a79888563e5b629b
|
|
840 |
public static function getInitializer(ClassLoader $loader)
|
841 |
{
|
842 |
return \Closure::bind(function () use ($loader) {
|
843 |
-
$loader->prefixLengthsPsr4 =
|
844 |
-
$loader->prefixDirsPsr4 =
|
845 |
-
$loader->prefixesPsr0 =
|
846 |
-
$loader->classMap =
|
847 |
|
848 |
}, null, ClassLoader::class);
|
849 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInite7838abe751421865f42aa61338ab306
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'S' =>
|
840 |
public static function getInitializer(ClassLoader $loader)
|
841 |
{
|
842 |
return \Closure::bind(function () use ($loader) {
|
843 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInite7838abe751421865f42aa61338ab306::$prefixLengthsPsr4;
|
844 |
+
$loader->prefixDirsPsr4 = ComposerStaticInite7838abe751421865f42aa61338ab306::$prefixDirsPsr4;
|
845 |
+
$loader->prefixesPsr0 = ComposerStaticInite7838abe751421865f42aa61338ab306::$prefixesPsr0;
|
846 |
+
$loader->classMap = ComposerStaticInite7838abe751421865f42aa61338ab306::$classMap;
|
847 |
|
848 |
}, null, ClassLoader::class);
|
849 |
}
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
@@ -763,207 +763,207 @@ return array(
|
|
763 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
|
764 |
),
|
765 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
|
766 |
-
'version' => '5.2.
|
767 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
|
768 |
),
|
769 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
|
770 |
-
'version' => '5.2.
|
771 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
|
772 |
),
|
773 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
|
774 |
-
'version' => '5.2.
|
775 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
|
776 |
),
|
777 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
|
778 |
-
'version' => '5.2.
|
779 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
|
780 |
),
|
781 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
|
782 |
-
'version' => '5.2.
|
783 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
|
784 |
),
|
785 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
|
786 |
-
'version' => '5.2.
|
787 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
|
788 |
),
|
789 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
|
790 |
-
'version' => '5.2.
|
791 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
|
792 |
),
|
793 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
|
794 |
-
'version' => '5.2.
|
795 |
'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
|
796 |
),
|
797 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
|
798 |
-
'version' => '5.2.
|
799 |
'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
|
800 |
),
|
801 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
|
802 |
-
'version' => '5.2.
|
803 |
'path' => $baseDir . '/lib/packages/League/Container/Container.php'
|
804 |
),
|
805 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
|
806 |
-
'version' => '5.2.
|
807 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
|
808 |
),
|
809 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
|
810 |
-
'version' => '5.2.
|
811 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
|
812 |
),
|
813 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
|
814 |
-
'version' => '5.2.
|
815 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
|
816 |
),
|
817 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
|
818 |
-
'version' => '5.2.
|
819 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
|
820 |
),
|
821 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
|
822 |
-
'version' => '5.2.
|
823 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
|
824 |
),
|
825 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
|
826 |
-
'version' => '5.2.
|
827 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
|
828 |
),
|
829 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
|
830 |
-
'version' => '5.2.
|
831 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
|
832 |
),
|
833 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
|
834 |
-
'version' => '5.2.
|
835 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
|
836 |
),
|
837 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
|
838 |
-
'version' => '5.2.
|
839 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
|
840 |
),
|
841 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
|
842 |
-
'version' => '5.2.
|
843 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
|
844 |
),
|
845 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
|
846 |
-
'version' => '5.2.
|
847 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
|
848 |
),
|
849 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
|
850 |
-
'version' => '5.2.
|
851 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
|
852 |
),
|
853 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
|
854 |
-
'version' => '5.2.
|
855 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
|
856 |
),
|
857 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
|
858 |
-
'version' => '5.2.
|
859 |
'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
|
860 |
),
|
861 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
|
862 |
-
'version' => '5.2.
|
863 |
'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
|
864 |
),
|
865 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
|
866 |
-
'version' => '5.2.
|
867 |
'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
|
868 |
),
|
869 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
|
870 |
-
'version' => '5.2.
|
871 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
|
872 |
),
|
873 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
|
874 |
-
'version' => '5.2.
|
875 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
|
876 |
),
|
877 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
|
878 |
-
'version' => '5.2.
|
879 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
|
880 |
),
|
881 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
|
882 |
-
'version' => '5.2.
|
883 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
|
884 |
),
|
885 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
|
886 |
-
'version' => '5.2.
|
887 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
|
888 |
),
|
889 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
|
890 |
-
'version' => '5.2.
|
891 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
|
892 |
),
|
893 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
|
894 |
-
'version' => '5.2.
|
895 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
|
896 |
),
|
897 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
|
898 |
-
'version' => '5.2.
|
899 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
|
900 |
),
|
901 |
'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
|
902 |
-
'version' => '5.2.
|
903 |
'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
|
904 |
),
|
905 |
'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
|
906 |
-
'version' => '5.2.
|
907 |
'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
|
908 |
),
|
909 |
'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
|
910 |
-
'version' => '5.2.
|
911 |
'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
|
912 |
),
|
913 |
'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
|
914 |
-
'version' => '5.2.
|
915 |
'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
|
916 |
),
|
917 |
'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
|
918 |
-
'version' => '5.2.
|
919 |
'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
|
920 |
),
|
921 |
'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
|
922 |
-
'version' => '5.2.
|
923 |
'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
|
924 |
),
|
925 |
'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
|
926 |
-
'version' => '5.2.
|
927 |
'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
|
928 |
),
|
929 |
'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
|
930 |
-
'version' => '5.2.
|
931 |
'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
|
932 |
),
|
933 |
'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
|
934 |
-
'version' => '5.2.
|
935 |
'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
|
936 |
),
|
937 |
'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\DependencyManagementTestHook' => array(
|
938 |
-
'version' => '5.2.
|
939 |
'path' => $baseDir . '/tests/Tools/DependencyManagement/DependencyManagementTestHook.php'
|
940 |
),
|
941 |
'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
|
942 |
-
'version' => '5.2.
|
943 |
'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
|
944 |
),
|
945 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHackerTestHook' => array(
|
946 |
-
'version' => '5.2.
|
947 |
'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHackerTestHook.php'
|
948 |
),
|
949 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
|
950 |
-
'version' => '5.2.
|
951 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
|
952 |
),
|
953 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
|
954 |
-
'version' => '5.2.
|
955 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
|
956 |
),
|
957 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
|
958 |
-
'version' => '5.2.
|
959 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
|
960 |
),
|
961 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
|
962 |
-
'version' => '5.2.
|
963 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
|
964 |
),
|
965 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
|
966 |
-
'version' => '5.2.
|
967 |
'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
|
968 |
),
|
969 |
'Automattic\\WooCommerce\\Blocks\\Assets' => array(
|
@@ -2539,75 +2539,75 @@ return array(
|
|
2539 |
'path' => $baseDir . '/packages/woocommerce-admin/src/Marketing/InstalledExtensions.php'
|
2540 |
),
|
2541 |
'Automattic\\WooCommerce\\Container' => array(
|
2542 |
-
'version' => '5.2.
|
2543 |
'path' => $baseDir . '/src/Container.php'
|
2544 |
),
|
2545 |
'Automattic\\WooCommerce\\Packages' => array(
|
2546 |
-
'version' => '5.2.
|
2547 |
'path' => $baseDir . '/src/Packages.php'
|
2548 |
),
|
2549 |
'Automattic\\WooCommerce\\Autoloader' => array(
|
2550 |
-
'version' => '5.2.
|
2551 |
'path' => $baseDir . '/src/Autoloader.php'
|
2552 |
),
|
2553 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
|
2554 |
-
'version' => '5.2.
|
2555 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
|
2556 |
),
|
2557 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
|
2558 |
-
'version' => '5.2.
|
2559 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
|
2560 |
),
|
2561 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
|
2562 |
-
'version' => '5.2.
|
2563 |
'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
|
2564 |
),
|
2565 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
|
2566 |
-
'version' => '5.2.
|
2567 |
'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
|
2568 |
),
|
2569 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
|
2570 |
-
'version' => '5.2.
|
2571 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
|
2572 |
),
|
2573 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
|
2574 |
-
'version' => '5.2.
|
2575 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
|
2576 |
),
|
2577 |
'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
|
2578 |
-
'version' => '5.2.
|
2579 |
'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
|
2580 |
),
|
2581 |
'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
|
2582 |
-
'version' => '5.2.
|
2583 |
'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
|
2584 |
),
|
2585 |
'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
|
2586 |
-
'version' => '5.2.
|
2587 |
'path' => $baseDir . '/src/Internal/RestApiUtil.php'
|
2588 |
),
|
2589 |
'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
|
2590 |
-
'version' => '5.2.
|
2591 |
'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
|
2592 |
),
|
2593 |
'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
|
2594 |
-
'version' => '5.2.
|
2595 |
'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
|
2596 |
),
|
2597 |
'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
|
2598 |
-
'version' => '5.2.
|
2599 |
'path' => $baseDir . '/src/Utilities/NumberUtil.php'
|
2600 |
),
|
2601 |
'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
|
2602 |
-
'version' => '5.2.
|
2603 |
'path' => $baseDir . '/src/Utilities/StringUtil.php'
|
2604 |
),
|
2605 |
'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
|
2606 |
-
'version' => '5.2.
|
2607 |
'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
|
2608 |
),
|
2609 |
'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
|
2610 |
-
'version' => '5.2.
|
2611 |
'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
|
2612 |
),
|
2613 |
'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
|
@@ -2631,431 +2631,431 @@ return array(
|
|
2631 |
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
|
2632 |
),
|
2633 |
'Automattic\\WooCommerce\\RestApi\\Server' => array(
|
2634 |
-
'version' => '5.2.
|
2635 |
'path' => $baseDir . '/includes/rest-api/Server.php'
|
2636 |
),
|
2637 |
'Automattic\\WooCommerce\\RestApi\\Package' => array(
|
2638 |
-
'version' => '5.2.
|
2639 |
'path' => $baseDir . '/includes/rest-api/Package.php'
|
2640 |
),
|
2641 |
'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
|
2642 |
-
'version' => '5.2.
|
2643 |
'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
|
2644 |
),
|
2645 |
'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
|
2646 |
-
'version' => '5.2.
|
2647 |
'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
|
2648 |
),
|
2649 |
'WC_REST_Products_Controller' => array(
|
2650 |
-
'version' => '5.2.
|
2651 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
|
2652 |
),
|
2653 |
'WC_REST_CRUD_Controller' => array(
|
2654 |
-
'version' => '5.2.
|
2655 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
|
2656 |
),
|
2657 |
'WC_REST_Order_Notes_Controller' => array(
|
2658 |
-
'version' => '5.2.
|
2659 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
|
2660 |
),
|
2661 |
'WC_REST_System_Status_Controller' => array(
|
2662 |
-
'version' => '5.2.
|
2663 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
|
2664 |
),
|
2665 |
'WC_REST_Settings_Controller' => array(
|
2666 |
-
'version' => '5.2.
|
2667 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
|
2668 |
),
|
2669 |
'WC_REST_Shipping_Zone_Methods_Controller' => array(
|
2670 |
-
'version' => '5.2.
|
2671 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
|
2672 |
),
|
2673 |
'WC_REST_System_Status_Tools_Controller' => array(
|
2674 |
-
'version' => '5.2.
|
2675 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
|
2676 |
),
|
2677 |
'WC_REST_Orders_Controller' => array(
|
2678 |
-
'version' => '5.2.
|
2679 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
|
2680 |
),
|
2681 |
'WC_REST_Data_Countries_Controller' => array(
|
2682 |
-
'version' => '5.2.
|
2683 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
|
2684 |
),
|
2685 |
'WC_REST_Payment_Gateways_Controller' => array(
|
2686 |
-
'version' => '5.2.
|
2687 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
|
2688 |
),
|
2689 |
'WC_REST_Taxes_Controller' => array(
|
2690 |
-
'version' => '5.2.
|
2691 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
|
2692 |
),
|
2693 |
'WC_REST_Order_Refunds_Controller' => array(
|
2694 |
-
'version' => '5.2.
|
2695 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
|
2696 |
),
|
2697 |
'WC_REST_Controller' => array(
|
2698 |
-
'version' => '5.2.
|
2699 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
|
2700 |
),
|
2701 |
'WC_REST_Report_Orders_Totals_Controller' => array(
|
2702 |
-
'version' => '5.2.
|
2703 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
|
2704 |
),
|
2705 |
'WC_REST_Shipping_Methods_Controller' => array(
|
2706 |
-
'version' => '5.2.
|
2707 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
|
2708 |
),
|
2709 |
'WC_REST_Setting_Options_Controller' => array(
|
2710 |
-
'version' => '5.2.
|
2711 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
|
2712 |
),
|
2713 |
'WC_REST_Posts_Controller' => array(
|
2714 |
-
'version' => '5.2.
|
2715 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
|
2716 |
),
|
2717 |
'WC_REST_Shipping_Zones_Controller_Base' => array(
|
2718 |
-
'version' => '5.2.
|
2719 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
|
2720 |
),
|
2721 |
'WC_REST_Terms_Controller' => array(
|
2722 |
-
'version' => '5.2.
|
2723 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
|
2724 |
),
|
2725 |
'WC_REST_Product_Categories_Controller' => array(
|
2726 |
-
'version' => '5.2.
|
2727 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
|
2728 |
),
|
2729 |
'WC_REST_Report_Customers_Totals_Controller' => array(
|
2730 |
-
'version' => '5.2.
|
2731 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
|
2732 |
),
|
2733 |
'WC_REST_Tax_Classes_Controller' => array(
|
2734 |
-
'version' => '5.2.
|
2735 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
|
2736 |
),
|
2737 |
'WC_REST_Report_Sales_Controller' => array(
|
2738 |
-
'version' => '5.2.
|
2739 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
|
2740 |
),
|
2741 |
'WC_REST_Shipping_Zones_Controller' => array(
|
2742 |
-
'version' => '5.2.
|
2743 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
|
2744 |
),
|
2745 |
'WC_REST_Customer_Downloads_Controller' => array(
|
2746 |
-
'version' => '5.2.
|
2747 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
|
2748 |
),
|
2749 |
'WC_REST_Shipping_Zone_Locations_Controller' => array(
|
2750 |
-
'version' => '5.2.
|
2751 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
|
2752 |
),
|
2753 |
'WC_REST_Report_Top_Sellers_Controller' => array(
|
2754 |
-
'version' => '5.2.
|
2755 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
|
2756 |
),
|
2757 |
'WC_REST_Product_Shipping_Classes_Controller' => array(
|
2758 |
-
'version' => '5.2.
|
2759 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
|
2760 |
),
|
2761 |
'WC_REST_Product_Tags_Controller' => array(
|
2762 |
-
'version' => '5.2.
|
2763 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
|
2764 |
),
|
2765 |
'WC_REST_Webhooks_Controller' => array(
|
2766 |
-
'version' => '5.2.
|
2767 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
|
2768 |
),
|
2769 |
'WC_REST_Report_Products_Totals_Controller' => array(
|
2770 |
-
'version' => '5.2.
|
2771 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
|
2772 |
),
|
2773 |
'WC_REST_Product_Reviews_Controller' => array(
|
2774 |
-
'version' => '5.2.
|
2775 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
|
2776 |
),
|
2777 |
'WC_REST_Report_Reviews_Totals_Controller' => array(
|
2778 |
-
'version' => '5.2.
|
2779 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
|
2780 |
),
|
2781 |
'WC_REST_Product_Attribute_Terms_Controller' => array(
|
2782 |
-
'version' => '5.2.
|
2783 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
|
2784 |
),
|
2785 |
'WC_REST_Reports_Controller' => array(
|
2786 |
-
'version' => '5.2.
|
2787 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
|
2788 |
),
|
2789 |
'WC_REST_Report_Coupons_Totals_Controller' => array(
|
2790 |
-
'version' => '5.2.
|
2791 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
|
2792 |
),
|
2793 |
'WC_REST_Product_Variations_Controller' => array(
|
2794 |
-
'version' => '5.2.
|
2795 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
|
2796 |
),
|
2797 |
'WC_REST_Data_Controller' => array(
|
2798 |
-
'version' => '5.2.
|
2799 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
|
2800 |
),
|
2801 |
'WC_REST_Data_Currencies_Controller' => array(
|
2802 |
-
'version' => '5.2.
|
2803 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
|
2804 |
),
|
2805 |
'WC_REST_Coupons_Controller' => array(
|
2806 |
-
'version' => '5.2.
|
2807 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
|
2808 |
),
|
2809 |
'WC_REST_Data_Continents_Controller' => array(
|
2810 |
-
'version' => '5.2.
|
2811 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
|
2812 |
),
|
2813 |
'WC_REST_Network_Orders_Controller' => array(
|
2814 |
-
'version' => '5.2.
|
2815 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
|
2816 |
),
|
2817 |
'WC_REST_Customers_Controller' => array(
|
2818 |
-
'version' => '5.2.
|
2819 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
|
2820 |
),
|
2821 |
'WC_REST_Product_Attributes_Controller' => array(
|
2822 |
-
'version' => '5.2.
|
2823 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
|
2824 |
),
|
2825 |
'WC_REST_Customers_V1_Controller' => array(
|
2826 |
-
'version' => '5.2.
|
2827 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
|
2828 |
),
|
2829 |
'WC_REST_Report_Top_Sellers_V1_Controller' => array(
|
2830 |
-
'version' => '5.2.
|
2831 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
|
2832 |
),
|
2833 |
'WC_REST_Products_V1_Controller' => array(
|
2834 |
-
'version' => '5.2.
|
2835 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
|
2836 |
),
|
2837 |
'WC_REST_Customer_Downloads_V1_Controller' => array(
|
2838 |
-
'version' => '5.2.
|
2839 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
|
2840 |
),
|
2841 |
'WC_REST_Product_Tags_V1_Controller' => array(
|
2842 |
-
'version' => '5.2.
|
2843 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
|
2844 |
),
|
2845 |
'WC_REST_Orders_V1_Controller' => array(
|
2846 |
-
'version' => '5.2.
|
2847 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
|
2848 |
),
|
2849 |
'WC_REST_Order_Refunds_V1_Controller' => array(
|
2850 |
-
'version' => '5.2.
|
2851 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
|
2852 |
),
|
2853 |
'WC_REST_Report_Sales_V1_Controller' => array(
|
2854 |
-
'version' => '5.2.
|
2855 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
|
2856 |
),
|
2857 |
'WC_REST_Product_Attributes_V1_Controller' => array(
|
2858 |
-
'version' => '5.2.
|
2859 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
|
2860 |
),
|
2861 |
'WC_REST_Webhooks_V1_Controller' => array(
|
2862 |
-
'version' => '5.2.
|
2863 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
|
2864 |
),
|
2865 |
'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
|
2866 |
-
'version' => '5.2.
|
2867 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
|
2868 |
),
|
2869 |
'WC_REST_Webhook_Deliveries_V1_Controller' => array(
|
2870 |
-
'version' => '5.2.
|
2871 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
|
2872 |
),
|
2873 |
'WC_REST_Product_Reviews_V1_Controller' => array(
|
2874 |
-
'version' => '5.2.
|
2875 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
|
2876 |
),
|
2877 |
'WC_REST_Coupons_V1_Controller' => array(
|
2878 |
-
'version' => '5.2.
|
2879 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
|
2880 |
),
|
2881 |
'WC_REST_Taxes_V1_Controller' => array(
|
2882 |
-
'version' => '5.2.
|
2883 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
|
2884 |
),
|
2885 |
'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
|
2886 |
-
'version' => '5.2.
|
2887 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
|
2888 |
),
|
2889 |
'WC_REST_Reports_V1_Controller' => array(
|
2890 |
-
'version' => '5.2.
|
2891 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
|
2892 |
),
|
2893 |
'WC_REST_Product_Categories_V1_Controller' => array(
|
2894 |
-
'version' => '5.2.
|
2895 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
|
2896 |
),
|
2897 |
'WC_REST_Tax_Classes_V1_Controller' => array(
|
2898 |
-
'version' => '5.2.
|
2899 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
|
2900 |
),
|
2901 |
'WC_REST_Order_Notes_V1_Controller' => array(
|
2902 |
-
'version' => '5.2.
|
2903 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
|
2904 |
),
|
2905 |
'WC_REST_Settings_V2_Controller' => array(
|
2906 |
-
'version' => '5.2.
|
2907 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
|
2908 |
),
|
2909 |
'WC_REST_Customers_V2_Controller' => array(
|
2910 |
-
'version' => '5.2.
|
2911 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
|
2912 |
),
|
2913 |
'WC_REST_Product_Variations_V2_Controller' => array(
|
2914 |
-
'version' => '5.2.
|
2915 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
|
2916 |
),
|
2917 |
'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
|
2918 |
-
'version' => '5.2.
|
2919 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
|
2920 |
),
|
2921 |
'WC_REST_Shipping_Zones_V2_Controller' => array(
|
2922 |
-
'version' => '5.2.
|
2923 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
|
2924 |
),
|
2925 |
'WC_REST_Product_Tags_V2_Controller' => array(
|
2926 |
-
'version' => '5.2.
|
2927 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
|
2928 |
),
|
2929 |
'WC_REST_Product_Reviews_V2_Controller' => array(
|
2930 |
-
'version' => '5.2.
|
2931 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
|
2932 |
),
|
2933 |
'WC_REST_Webhooks_V2_Controller' => array(
|
2934 |
-
'version' => '5.2.
|
2935 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
|
2936 |
),
|
2937 |
'WC_REST_Customer_Downloads_V2_Controller' => array(
|
2938 |
-
'version' => '5.2.
|
2939 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
|
2940 |
),
|
2941 |
'WC_REST_Products_V2_Controller' => array(
|
2942 |
-
'version' => '5.2.
|
2943 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
|
2944 |
),
|
2945 |
'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
|
2946 |
-
'version' => '5.2.
|
2947 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
|
2948 |
),
|
2949 |
'WC_REST_Network_Orders_V2_Controller' => array(
|
2950 |
-
'version' => '5.2.
|
2951 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
|
2952 |
),
|
2953 |
'WC_REST_Orders_V2_Controller' => array(
|
2954 |
-
'version' => '5.2.
|
2955 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
|
2956 |
),
|
2957 |
'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
|
2958 |
-
'version' => '5.2.
|
2959 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
|
2960 |
),
|
2961 |
'WC_REST_Webhook_Deliveries_V2_Controller' => array(
|
2962 |
-
'version' => '5.2.
|
2963 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
|
2964 |
),
|
2965 |
'WC_REST_Taxes_V2_Controller' => array(
|
2966 |
-
'version' => '5.2.
|
2967 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
|
2968 |
),
|
2969 |
'WC_REST_Tax_Classes_V2_Controller' => array(
|
2970 |
-
'version' => '5.2.
|
2971 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
|
2972 |
),
|
2973 |
'WC_REST_Product_Categories_V2_Controller' => array(
|
2974 |
-
'version' => '5.2.
|
2975 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
|
2976 |
),
|
2977 |
'WC_REST_Report_Sales_V2_Controller' => array(
|
2978 |
-
'version' => '5.2.
|
2979 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
|
2980 |
),
|
2981 |
'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
|
2982 |
-
'version' => '5.2.
|
2983 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
|
2984 |
),
|
2985 |
'WC_REST_Payment_Gateways_V2_Controller' => array(
|
2986 |
-
'version' => '5.2.
|
2987 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
|
2988 |
),
|
2989 |
'WC_REST_Coupons_V2_Controller' => array(
|
2990 |
-
'version' => '5.2.
|
2991 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
|
2992 |
),
|
2993 |
'WC_REST_Setting_Options_V2_Controller' => array(
|
2994 |
-
'version' => '5.2.
|
2995 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
|
2996 |
),
|
2997 |
'WC_REST_Reports_V2_Controller' => array(
|
2998 |
-
'version' => '5.2.
|
2999 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
|
3000 |
),
|
3001 |
'WC_REST_System_Status_V2_Controller' => array(
|
3002 |
-
'version' => '5.2.
|
3003 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
|
3004 |
),
|
3005 |
'WC_REST_System_Status_Tools_V2_Controller' => array(
|
3006 |
-
'version' => '5.2.
|
3007 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
|
3008 |
),
|
3009 |
'WC_REST_Product_Attributes_V2_Controller' => array(
|
3010 |
-
'version' => '5.2.
|
3011 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
|
3012 |
),
|
3013 |
'WC_REST_Order_Notes_V2_Controller' => array(
|
3014 |
-
'version' => '5.2.
|
3015 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
|
3016 |
),
|
3017 |
'WC_REST_Order_Refunds_V2_Controller' => array(
|
3018 |
-
'version' => '5.2.
|
3019 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
|
3020 |
),
|
3021 |
'WC_REST_Shipping_Methods_V2_Controller' => array(
|
3022 |
-
'version' => '5.2.
|
3023 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
|
3024 |
),
|
3025 |
'WC_REST_Report_Top_Sellers_V2_Controller' => array(
|
3026 |
-
'version' => '5.2.
|
3027 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
|
3028 |
),
|
3029 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
|
3030 |
-
'version' => '5.2.
|
3031 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
|
3032 |
),
|
3033 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
|
3034 |
-
'version' => '5.2.
|
3035 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
|
3036 |
),
|
3037 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
|
3038 |
-
'version' => '5.2.
|
3039 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
|
3040 |
),
|
3041 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
|
3042 |
-
'version' => '5.2.
|
3043 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
|
3044 |
),
|
3045 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
|
3046 |
-
'version' => '5.2.
|
3047 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
|
3048 |
),
|
3049 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
|
3050 |
-
'version' => '5.2.
|
3051 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
|
3052 |
),
|
3053 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
|
3054 |
-
'version' => '5.2.
|
3055 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
|
3056 |
),
|
3057 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
|
3058 |
-
'version' => '5.2.
|
3059 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
|
3060 |
),
|
3061 |
'Automattic\\Jetpack\\Constants' => array(
|
763 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
|
764 |
),
|
765 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
|
766 |
+
'version' => '5.2.2.0',
|
767 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
|
768 |
),
|
769 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
|
770 |
+
'version' => '5.2.2.0',
|
771 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
|
772 |
),
|
773 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
|
774 |
+
'version' => '5.2.2.0',
|
775 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
|
776 |
),
|
777 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
|
778 |
+
'version' => '5.2.2.0',
|
779 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
|
780 |
),
|
781 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
|
782 |
+
'version' => '5.2.2.0',
|
783 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
|
784 |
),
|
785 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
|
786 |
+
'version' => '5.2.2.0',
|
787 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
|
788 |
),
|
789 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
|
790 |
+
'version' => '5.2.2.0',
|
791 |
'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
|
792 |
),
|
793 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
|
794 |
+
'version' => '5.2.2.0',
|
795 |
'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
|
796 |
),
|
797 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
|
798 |
+
'version' => '5.2.2.0',
|
799 |
'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
|
800 |
),
|
801 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
|
802 |
+
'version' => '5.2.2.0',
|
803 |
'path' => $baseDir . '/lib/packages/League/Container/Container.php'
|
804 |
),
|
805 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
|
806 |
+
'version' => '5.2.2.0',
|
807 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
|
808 |
),
|
809 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
|
810 |
+
'version' => '5.2.2.0',
|
811 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
|
812 |
),
|
813 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
|
814 |
+
'version' => '5.2.2.0',
|
815 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
|
816 |
),
|
817 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
|
818 |
+
'version' => '5.2.2.0',
|
819 |
'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
|
820 |
),
|
821 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
|
822 |
+
'version' => '5.2.2.0',
|
823 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
|
824 |
),
|
825 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
|
826 |
+
'version' => '5.2.2.0',
|
827 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
|
828 |
),
|
829 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
|
830 |
+
'version' => '5.2.2.0',
|
831 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
|
832 |
),
|
833 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
|
834 |
+
'version' => '5.2.2.0',
|
835 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
|
836 |
),
|
837 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
|
838 |
+
'version' => '5.2.2.0',
|
839 |
'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
|
840 |
),
|
841 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
|
842 |
+
'version' => '5.2.2.0',
|
843 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
|
844 |
),
|
845 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
|
846 |
+
'version' => '5.2.2.0',
|
847 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
|
848 |
),
|
849 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
|
850 |
+
'version' => '5.2.2.0',
|
851 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
|
852 |
),
|
853 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
|
854 |
+
'version' => '5.2.2.0',
|
855 |
'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
|
856 |
),
|
857 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
|
858 |
+
'version' => '5.2.2.0',
|
859 |
'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
|
860 |
),
|
861 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
|
862 |
+
'version' => '5.2.2.0',
|
863 |
'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
|
864 |
),
|
865 |
'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
|
866 |
+
'version' => '5.2.2.0',
|
867 |
'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
|
868 |
),
|
869 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
|
870 |
+
'version' => '5.2.2.0',
|
871 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
|
872 |
),
|
873 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
|
874 |
+
'version' => '5.2.2.0',
|
875 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
|
876 |
),
|
877 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
|
878 |
+
'version' => '5.2.2.0',
|
879 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
|
880 |
),
|
881 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
|
882 |
+
'version' => '5.2.2.0',
|
883 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
|
884 |
),
|
885 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
|
886 |
+
'version' => '5.2.2.0',
|
887 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
|
888 |
),
|
889 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
|
890 |
+
'version' => '5.2.2.0',
|
891 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
|
892 |
),
|
893 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
|
894 |
+
'version' => '5.2.2.0',
|
895 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
|
896 |
),
|
897 |
'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
|
898 |
+
'version' => '5.2.2.0',
|
899 |
'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
|
900 |
),
|
901 |
'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
|
902 |
+
'version' => '5.2.2.0',
|
903 |
'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
|
904 |
),
|
905 |
'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
|
906 |
+
'version' => '5.2.2.0',
|
907 |
'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
|
908 |
),
|
909 |
'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
|
910 |
+
'version' => '5.2.2.0',
|
911 |
'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
|
912 |
),
|
913 |
'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
|
914 |
+
'version' => '5.2.2.0',
|
915 |
'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
|
916 |
),
|
917 |
'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
|
918 |
+
'version' => '5.2.2.0',
|
919 |
'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
|
920 |
),
|
921 |
'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
|
922 |
+
'version' => '5.2.2.0',
|
923 |
'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
|
924 |
),
|
925 |
'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
|
926 |
+
'version' => '5.2.2.0',
|
927 |
'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
|
928 |
),
|
929 |
'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
|
930 |
+
'version' => '5.2.2.0',
|
931 |
'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
|
932 |
),
|
933 |
'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
|
934 |
+
'version' => '5.2.2.0',
|
935 |
'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
|
936 |
),
|
937 |
'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\DependencyManagementTestHook' => array(
|
938 |
+
'version' => '5.2.2.0',
|
939 |
'path' => $baseDir . '/tests/Tools/DependencyManagement/DependencyManagementTestHook.php'
|
940 |
),
|
941 |
'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
|
942 |
+
'version' => '5.2.2.0',
|
943 |
'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
|
944 |
),
|
945 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHackerTestHook' => array(
|
946 |
+
'version' => '5.2.2.0',
|
947 |
'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHackerTestHook.php'
|
948 |
),
|
949 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
|
950 |
+
'version' => '5.2.2.0',
|
951 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
|
952 |
),
|
953 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
|
954 |
+
'version' => '5.2.2.0',
|
955 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
|
956 |
),
|
957 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
|
958 |
+
'version' => '5.2.2.0',
|
959 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
|
960 |
),
|
961 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
|
962 |
+
'version' => '5.2.2.0',
|
963 |
'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
|
964 |
),
|
965 |
'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
|
966 |
+
'version' => '5.2.2.0',
|
967 |
'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
|
968 |
),
|
969 |
'Automattic\\WooCommerce\\Blocks\\Assets' => array(
|
2539 |
'path' => $baseDir . '/packages/woocommerce-admin/src/Marketing/InstalledExtensions.php'
|
2540 |
),
|
2541 |
'Automattic\\WooCommerce\\Container' => array(
|
2542 |
+
'version' => '5.2.2.0',
|
2543 |
'path' => $baseDir . '/src/Container.php'
|
2544 |
),
|
2545 |
'Automattic\\WooCommerce\\Packages' => array(
|
2546 |
+
'version' => '5.2.2.0',
|
2547 |
'path' => $baseDir . '/src/Packages.php'
|
2548 |
),
|
2549 |
'Automattic\\WooCommerce\\Autoloader' => array(
|
2550 |
+
'version' => '5.2.2.0',
|
2551 |
'path' => $baseDir . '/src/Autoloader.php'
|
2552 |
),
|
2553 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
|
2554 |
+
'version' => '5.2.2.0',
|
2555 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
|
2556 |
),
|
2557 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
|
2558 |
+
'version' => '5.2.2.0',
|
2559 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
|
2560 |
),
|
2561 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
|
2562 |
+
'version' => '5.2.2.0',
|
2563 |
'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
|
2564 |
),
|
2565 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
|
2566 |
+
'version' => '5.2.2.0',
|
2567 |
'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
|
2568 |
),
|
2569 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
|
2570 |
+
'version' => '5.2.2.0',
|
2571 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
|
2572 |
),
|
2573 |
'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
|
2574 |
+
'version' => '5.2.2.0',
|
2575 |
'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
|
2576 |
),
|
2577 |
'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
|
2578 |
+
'version' => '5.2.2.0',
|
2579 |
'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
|
2580 |
),
|
2581 |
'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
|
2582 |
+
'version' => '5.2.2.0',
|
2583 |
'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
|
2584 |
),
|
2585 |
'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
|
2586 |
+
'version' => '5.2.2.0',
|
2587 |
'path' => $baseDir . '/src/Internal/RestApiUtil.php'
|
2588 |
),
|
2589 |
'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
|
2590 |
+
'version' => '5.2.2.0',
|
2591 |
'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
|
2592 |
),
|
2593 |
'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
|
2594 |
+
'version' => '5.2.2.0',
|
2595 |
'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
|
2596 |
),
|
2597 |
'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
|
2598 |
+
'version' => '5.2.2.0',
|
2599 |
'path' => $baseDir . '/src/Utilities/NumberUtil.php'
|
2600 |
),
|
2601 |
'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
|
2602 |
+
'version' => '5.2.2.0',
|
2603 |
'path' => $baseDir . '/src/Utilities/StringUtil.php'
|
2604 |
),
|
2605 |
'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
|
2606 |
+
'version' => '5.2.2.0',
|
2607 |
'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
|
2608 |
),
|
2609 |
'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
|
2610 |
+
'version' => '5.2.2.0',
|
2611 |
'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
|
2612 |
),
|
2613 |
'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
|
2631 |
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
|
2632 |
),
|
2633 |
'Automattic\\WooCommerce\\RestApi\\Server' => array(
|
2634 |
+
'version' => '5.2.2.0',
|
2635 |
'path' => $baseDir . '/includes/rest-api/Server.php'
|
2636 |
),
|
2637 |
'Automattic\\WooCommerce\\RestApi\\Package' => array(
|
2638 |
+
'version' => '5.2.2.0',
|
2639 |
'path' => $baseDir . '/includes/rest-api/Package.php'
|
2640 |
),
|
2641 |
'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
|
2642 |
+
'version' => '5.2.2.0',
|
2643 |
'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
|
2644 |
),
|
2645 |
'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
|
2646 |
+
'version' => '5.2.2.0',
|
2647 |
'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
|
2648 |
),
|
2649 |
'WC_REST_Products_Controller' => array(
|
2650 |
+
'version' => '5.2.2.0',
|
2651 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
|
2652 |
),
|
2653 |
'WC_REST_CRUD_Controller' => array(
|
2654 |
+
'version' => '5.2.2.0',
|
2655 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
|
2656 |
),
|
2657 |
'WC_REST_Order_Notes_Controller' => array(
|
2658 |
+
'version' => '5.2.2.0',
|
2659 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
|
2660 |
),
|
2661 |
'WC_REST_System_Status_Controller' => array(
|
2662 |
+
'version' => '5.2.2.0',
|
2663 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
|
2664 |
),
|
2665 |
'WC_REST_Settings_Controller' => array(
|
2666 |
+
'version' => '5.2.2.0',
|
2667 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
|
2668 |
),
|
2669 |
'WC_REST_Shipping_Zone_Methods_Controller' => array(
|
2670 |
+
'version' => '5.2.2.0',
|
2671 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
|
2672 |
),
|
2673 |
'WC_REST_System_Status_Tools_Controller' => array(
|
2674 |
+
'version' => '5.2.2.0',
|
2675 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
|
2676 |
),
|
2677 |
'WC_REST_Orders_Controller' => array(
|
2678 |
+
'version' => '5.2.2.0',
|
2679 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
|
2680 |
),
|
2681 |
'WC_REST_Data_Countries_Controller' => array(
|
2682 |
+
'version' => '5.2.2.0',
|
2683 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
|
2684 |
),
|
2685 |
'WC_REST_Payment_Gateways_Controller' => array(
|
2686 |
+
'version' => '5.2.2.0',
|
2687 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
|
2688 |
),
|
2689 |
'WC_REST_Taxes_Controller' => array(
|
2690 |
+
'version' => '5.2.2.0',
|
2691 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
|
2692 |
),
|
2693 |
'WC_REST_Order_Refunds_Controller' => array(
|
2694 |
+
'version' => '5.2.2.0',
|
2695 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
|
2696 |
),
|
2697 |
'WC_REST_Controller' => array(
|
2698 |
+
'version' => '5.2.2.0',
|
2699 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
|
2700 |
),
|
2701 |
'WC_REST_Report_Orders_Totals_Controller' => array(
|
2702 |
+
'version' => '5.2.2.0',
|
2703 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
|
2704 |
),
|
2705 |
'WC_REST_Shipping_Methods_Controller' => array(
|
2706 |
+
'version' => '5.2.2.0',
|
2707 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
|
2708 |
),
|
2709 |
'WC_REST_Setting_Options_Controller' => array(
|
2710 |
+
'version' => '5.2.2.0',
|
2711 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
|
2712 |
),
|
2713 |
'WC_REST_Posts_Controller' => array(
|
2714 |
+
'version' => '5.2.2.0',
|
2715 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
|
2716 |
),
|
2717 |
'WC_REST_Shipping_Zones_Controller_Base' => array(
|
2718 |
+
'version' => '5.2.2.0',
|
2719 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
|
2720 |
),
|
2721 |
'WC_REST_Terms_Controller' => array(
|
2722 |
+
'version' => '5.2.2.0',
|
2723 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
|
2724 |
),
|
2725 |
'WC_REST_Product_Categories_Controller' => array(
|
2726 |
+
'version' => '5.2.2.0',
|
2727 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
|
2728 |
),
|
2729 |
'WC_REST_Report_Customers_Totals_Controller' => array(
|
2730 |
+
'version' => '5.2.2.0',
|
2731 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
|
2732 |
),
|
2733 |
'WC_REST_Tax_Classes_Controller' => array(
|
2734 |
+
'version' => '5.2.2.0',
|
2735 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
|
2736 |
),
|
2737 |
'WC_REST_Report_Sales_Controller' => array(
|
2738 |
+
'version' => '5.2.2.0',
|
2739 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
|
2740 |
),
|
2741 |
'WC_REST_Shipping_Zones_Controller' => array(
|
2742 |
+
'version' => '5.2.2.0',
|
2743 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
|
2744 |
),
|
2745 |
'WC_REST_Customer_Downloads_Controller' => array(
|
2746 |
+
'version' => '5.2.2.0',
|
2747 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
|
2748 |
),
|
2749 |
'WC_REST_Shipping_Zone_Locations_Controller' => array(
|
2750 |
+
'version' => '5.2.2.0',
|
2751 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
|
2752 |
),
|
2753 |
'WC_REST_Report_Top_Sellers_Controller' => array(
|
2754 |
+
'version' => '5.2.2.0',
|
2755 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
|
2756 |
),
|
2757 |
'WC_REST_Product_Shipping_Classes_Controller' => array(
|
2758 |
+
'version' => '5.2.2.0',
|
2759 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
|
2760 |
),
|
2761 |
'WC_REST_Product_Tags_Controller' => array(
|
2762 |
+
'version' => '5.2.2.0',
|
2763 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
|
2764 |
),
|
2765 |
'WC_REST_Webhooks_Controller' => array(
|
2766 |
+
'version' => '5.2.2.0',
|
2767 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
|
2768 |
),
|
2769 |
'WC_REST_Report_Products_Totals_Controller' => array(
|
2770 |
+
'version' => '5.2.2.0',
|
2771 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
|
2772 |
),
|
2773 |
'WC_REST_Product_Reviews_Controller' => array(
|
2774 |
+
'version' => '5.2.2.0',
|
2775 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
|
2776 |
),
|
2777 |
'WC_REST_Report_Reviews_Totals_Controller' => array(
|
2778 |
+
'version' => '5.2.2.0',
|
2779 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
|
2780 |
),
|
2781 |
'WC_REST_Product_Attribute_Terms_Controller' => array(
|
2782 |
+
'version' => '5.2.2.0',
|
2783 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
|
2784 |
),
|
2785 |
'WC_REST_Reports_Controller' => array(
|
2786 |
+
'version' => '5.2.2.0',
|
2787 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
|
2788 |
),
|
2789 |
'WC_REST_Report_Coupons_Totals_Controller' => array(
|
2790 |
+
'version' => '5.2.2.0',
|
2791 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
|
2792 |
),
|
2793 |
'WC_REST_Product_Variations_Controller' => array(
|
2794 |
+
'version' => '5.2.2.0',
|
2795 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
|
2796 |
),
|
2797 |
'WC_REST_Data_Controller' => array(
|
2798 |
+
'version' => '5.2.2.0',
|
2799 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
|
2800 |
),
|
2801 |
'WC_REST_Data_Currencies_Controller' => array(
|
2802 |
+
'version' => '5.2.2.0',
|
2803 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
|
2804 |
),
|
2805 |
'WC_REST_Coupons_Controller' => array(
|
2806 |
+
'version' => '5.2.2.0',
|
2807 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
|
2808 |
),
|
2809 |
'WC_REST_Data_Continents_Controller' => array(
|
2810 |
+
'version' => '5.2.2.0',
|
2811 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
|
2812 |
),
|
2813 |
'WC_REST_Network_Orders_Controller' => array(
|
2814 |
+
'version' => '5.2.2.0',
|
2815 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
|
2816 |
),
|
2817 |
'WC_REST_Customers_Controller' => array(
|
2818 |
+
'version' => '5.2.2.0',
|
2819 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
|
2820 |
),
|
2821 |
'WC_REST_Product_Attributes_Controller' => array(
|
2822 |
+
'version' => '5.2.2.0',
|
2823 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
|
2824 |
),
|
2825 |
'WC_REST_Customers_V1_Controller' => array(
|
2826 |
+
'version' => '5.2.2.0',
|
2827 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
|
2828 |
),
|
2829 |
'WC_REST_Report_Top_Sellers_V1_Controller' => array(
|
2830 |
+
'version' => '5.2.2.0',
|
2831 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
|
2832 |
),
|
2833 |
'WC_REST_Products_V1_Controller' => array(
|
2834 |
+
'version' => '5.2.2.0',
|
2835 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
|
2836 |
),
|
2837 |
'WC_REST_Customer_Downloads_V1_Controller' => array(
|
2838 |
+
'version' => '5.2.2.0',
|
2839 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
|
2840 |
),
|
2841 |
'WC_REST_Product_Tags_V1_Controller' => array(
|
2842 |
+
'version' => '5.2.2.0',
|
2843 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
|
2844 |
),
|
2845 |
'WC_REST_Orders_V1_Controller' => array(
|
2846 |
+
'version' => '5.2.2.0',
|
2847 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
|
2848 |
),
|
2849 |
'WC_REST_Order_Refunds_V1_Controller' => array(
|
2850 |
+
'version' => '5.2.2.0',
|
2851 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
|
2852 |
),
|
2853 |
'WC_REST_Report_Sales_V1_Controller' => array(
|
2854 |
+
'version' => '5.2.2.0',
|
2855 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
|
2856 |
),
|
2857 |
'WC_REST_Product_Attributes_V1_Controller' => array(
|
2858 |
+
'version' => '5.2.2.0',
|
2859 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
|
2860 |
),
|
2861 |
'WC_REST_Webhooks_V1_Controller' => array(
|
2862 |
+
'version' => '5.2.2.0',
|
2863 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
|
2864 |
),
|
2865 |
'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
|
2866 |
+
'version' => '5.2.2.0',
|
2867 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
|
2868 |
),
|
2869 |
'WC_REST_Webhook_Deliveries_V1_Controller' => array(
|
2870 |
+
'version' => '5.2.2.0',
|
2871 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
|
2872 |
),
|
2873 |
'WC_REST_Product_Reviews_V1_Controller' => array(
|
2874 |
+
'version' => '5.2.2.0',
|
2875 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
|
2876 |
),
|
2877 |
'WC_REST_Coupons_V1_Controller' => array(
|
2878 |
+
'version' => '5.2.2.0',
|
2879 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
|
2880 |
),
|
2881 |
'WC_REST_Taxes_V1_Controller' => array(
|
2882 |
+
'version' => '5.2.2.0',
|
2883 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
|
2884 |
),
|
2885 |
'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
|
2886 |
+
'version' => '5.2.2.0',
|
2887 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
|
2888 |
),
|
2889 |
'WC_REST_Reports_V1_Controller' => array(
|
2890 |
+
'version' => '5.2.2.0',
|
2891 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
|
2892 |
),
|
2893 |
'WC_REST_Product_Categories_V1_Controller' => array(
|
2894 |
+
'version' => '5.2.2.0',
|
2895 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
|
2896 |
),
|
2897 |
'WC_REST_Tax_Classes_V1_Controller' => array(
|
2898 |
+
'version' => '5.2.2.0',
|
2899 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
|
2900 |
),
|
2901 |
'WC_REST_Order_Notes_V1_Controller' => array(
|
2902 |
+
'version' => '5.2.2.0',
|
2903 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
|
2904 |
),
|
2905 |
'WC_REST_Settings_V2_Controller' => array(
|
2906 |
+
'version' => '5.2.2.0',
|
2907 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
|
2908 |
),
|
2909 |
'WC_REST_Customers_V2_Controller' => array(
|
2910 |
+
'version' => '5.2.2.0',
|
2911 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
|
2912 |
),
|
2913 |
'WC_REST_Product_Variations_V2_Controller' => array(
|
2914 |
+
'version' => '5.2.2.0',
|
2915 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
|
2916 |
),
|
2917 |
'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
|
2918 |
+
'version' => '5.2.2.0',
|
2919 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
|
2920 |
),
|
2921 |
'WC_REST_Shipping_Zones_V2_Controller' => array(
|
2922 |
+
'version' => '5.2.2.0',
|
2923 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
|
2924 |
),
|
2925 |
'WC_REST_Product_Tags_V2_Controller' => array(
|
2926 |
+
'version' => '5.2.2.0',
|
2927 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
|
2928 |
),
|
2929 |
'WC_REST_Product_Reviews_V2_Controller' => array(
|
2930 |
+
'version' => '5.2.2.0',
|
2931 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
|
2932 |
),
|
2933 |
'WC_REST_Webhooks_V2_Controller' => array(
|
2934 |
+
'version' => '5.2.2.0',
|
2935 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
|
2936 |
),
|
2937 |
'WC_REST_Customer_Downloads_V2_Controller' => array(
|
2938 |
+
'version' => '5.2.2.0',
|
2939 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
|
2940 |
),
|
2941 |
'WC_REST_Products_V2_Controller' => array(
|
2942 |
+
'version' => '5.2.2.0',
|
2943 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
|
2944 |
),
|
2945 |
'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
|
2946 |
+
'version' => '5.2.2.0',
|
2947 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
|
2948 |
),
|
2949 |
'WC_REST_Network_Orders_V2_Controller' => array(
|
2950 |
+
'version' => '5.2.2.0',
|
2951 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
|
2952 |
),
|
2953 |
'WC_REST_Orders_V2_Controller' => array(
|
2954 |
+
'version' => '5.2.2.0',
|
2955 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
|
2956 |
),
|
2957 |
'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
|
2958 |
+
'version' => '5.2.2.0',
|
2959 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
|
2960 |
),
|
2961 |
'WC_REST_Webhook_Deliveries_V2_Controller' => array(
|
2962 |
+
'version' => '5.2.2.0',
|
2963 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
|
2964 |
),
|
2965 |
'WC_REST_Taxes_V2_Controller' => array(
|
2966 |
+
'version' => '5.2.2.0',
|
2967 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
|
2968 |
),
|
2969 |
'WC_REST_Tax_Classes_V2_Controller' => array(
|
2970 |
+
'version' => '5.2.2.0',
|
2971 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
|
2972 |
),
|
2973 |
'WC_REST_Product_Categories_V2_Controller' => array(
|
2974 |
+
'version' => '5.2.2.0',
|
2975 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
|
2976 |
),
|
2977 |
'WC_REST_Report_Sales_V2_Controller' => array(
|
2978 |
+
'version' => '5.2.2.0',
|
2979 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
|
2980 |
),
|
2981 |
'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
|
2982 |
+
'version' => '5.2.2.0',
|
2983 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
|
2984 |
),
|
2985 |
'WC_REST_Payment_Gateways_V2_Controller' => array(
|
2986 |
+
'version' => '5.2.2.0',
|
2987 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
|
2988 |
),
|
2989 |
'WC_REST_Coupons_V2_Controller' => array(
|
2990 |
+
'version' => '5.2.2.0',
|
2991 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
|
2992 |
),
|
2993 |
'WC_REST_Setting_Options_V2_Controller' => array(
|
2994 |
+
'version' => '5.2.2.0',
|
2995 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
|
2996 |
),
|
2997 |
'WC_REST_Reports_V2_Controller' => array(
|
2998 |
+
'version' => '5.2.2.0',
|
2999 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
|
3000 |
),
|
3001 |
'WC_REST_System_Status_V2_Controller' => array(
|
3002 |
+
'version' => '5.2.2.0',
|
3003 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
|
3004 |
),
|
3005 |
'WC_REST_System_Status_Tools_V2_Controller' => array(
|
3006 |
+
'version' => '5.2.2.0',
|
3007 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
|
3008 |
),
|
3009 |
'WC_REST_Product_Attributes_V2_Controller' => array(
|
3010 |
+
'version' => '5.2.2.0',
|
3011 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
|
3012 |
),
|
3013 |
'WC_REST_Order_Notes_V2_Controller' => array(
|
3014 |
+
'version' => '5.2.2.0',
|
3015 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
|
3016 |
),
|
3017 |
'WC_REST_Order_Refunds_V2_Controller' => array(
|
3018 |
+
'version' => '5.2.2.0',
|
3019 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
|
3020 |
),
|
3021 |
'WC_REST_Shipping_Methods_V2_Controller' => array(
|
3022 |
+
'version' => '5.2.2.0',
|
3023 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
|
3024 |
),
|
3025 |
'WC_REST_Report_Top_Sellers_V2_Controller' => array(
|
3026 |
+
'version' => '5.2.2.0',
|
3027 |
'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
|
3028 |
),
|
3029 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
|
3030 |
+
'version' => '5.2.2.0',
|
3031 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
|
3032 |
),
|
3033 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
|
3034 |
+
'version' => '5.2.2.0',
|
3035 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
|
3036 |
),
|
3037 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
|
3038 |
+
'version' => '5.2.2.0',
|
3039 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
|
3040 |
),
|
3041 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
|
3042 |
+
'version' => '5.2.2.0',
|
3043 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
|
3044 |
),
|
3045 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
|
3046 |
+
'version' => '5.2.2.0',
|
3047 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
|
3048 |
),
|
3049 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
|
3050 |
+
'version' => '5.2.2.0',
|
3051 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
|
3052 |
),
|
3053 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
|
3054 |
+
'version' => '5.2.2.0',
|
3055 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
|
3056 |
),
|
3057 |
'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
|
3058 |
+
'version' => '5.2.2.0',
|
3059 |
'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
|
3060 |
),
|
3061 |
'Automattic\\Jetpack\\Constants' => 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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
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\jpe7838abe751421865f42aa61338ab306;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
woocommerce.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce
|
4 |
* Plugin URI: https://woocommerce.com/
|
5 |
* Description: An eCommerce toolkit that helps you sell anything. Beautifully.
|
6 |
-
* Version: 5.2.
|
7 |
* Author: Automattic
|
8 |
* Author URI: https://woocommerce.com
|
9 |
* Text Domain: woocommerce
|
3 |
* Plugin Name: WooCommerce
|
4 |
* Plugin URI: https://woocommerce.com/
|
5 |
* Description: An eCommerce toolkit that helps you sell anything. Beautifully.
|
6 |
+
* Version: 5.2.2
|
7 |
* Author: Automattic
|
8 |
* Author URI: https://woocommerce.com
|
9 |
* Text Domain: woocommerce
|