1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Migrating to PHP 7.0

This commit is contained in:
dima-uryvskiy 2022-09-23 13:18:58 +03:00
parent bb64d92305
commit 892c1a42b0
68 changed files with 251 additions and 204 deletions

View file

@ -1,3 +1,8 @@
## 2022-09-23 4.5.0
* Migrating to PHP 7.0.
* Change logic work with ICML catalog: added streaming generation, added generators in the ICML generation process.
* Change logic work with address
## 2022-09-05 4.4.9
* Fix bug with product tax

View file

@ -1,7 +1,7 @@
[![Build Status](https://github.com/retailcrm/woocommerce-module/workflows/woo/badge.svg)](https://github.com/retailcrm/woocommerce-module/actions)
[![Coverage](https://img.shields.io/codecov/c/gh/retailcrm/woocommerce-module/master.svg?logo=github)](https://codecov.io/gh/retailcrm/woocommerce-module)
[![GitHub release](https://img.shields.io/github/release/retailcrm/woocommerce-module.svg?logo=codecov)](https://github.com/retailcrm/woocommerce-module/releases)
[![PHP version](https://img.shields.io/badge/PHP->=5.4-blue.svg?logo=php)](https://php.net/)
[![PHP version](https://img.shields.io/badge/PHP->=7.0-blue.svg?logo=php)](https://php.net/)
Woocommerce-module
==================

View file

@ -1 +1 @@
4.4.9
4.5.0

View file

@ -10,7 +10,8 @@
],
"minimum-stability": "dev",
"require": {
"ext-simplexml": "*"
"ext-simplexml": "*",
"ext-xmlwriter": "*"
},
"require-dev": {
"ext-json": "*",

View file

@ -339,3 +339,6 @@ msgstr "Borrar"
msgid "Cron tasks cleared"
msgstr "Trabajos cron borrados"
msgid "Untitled"
msgstr "Intitulado"

View file

@ -348,3 +348,7 @@ msgstr "Очистить"
msgid "Cron tasks cleared"
msgstr "Cron задачи очищены"
msgid "Untitled"
msgstr "Без названия"

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Abstract_Builder - Builds data for CRM.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Abstracts_Address - Builds data for addresses orders/customers.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Abstracts_Data - Class manage different data.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Abstracts_Settings - Settings plugin Simla.
*

View file

@ -1,17 +1,5 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Client_V5 - Api Client V5 class.
*
* @category Integration
* @package WC_Retailcrm_Client
* @author RetailCRM <dev@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
if (!class_exists('WC_Retailcrm_Request')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-request.php'));
}
@ -20,6 +8,17 @@ if (!class_exists('WC_Retailcrm_Response')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-response.php'));
}
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Client_V5 - Api Client V5 class.
*
* @category Integration
* @package WC_Retailcrm_Client
* @author RetailCRM <dev@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
class WC_Retailcrm_Client_V5
{
protected $client;

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Exception_Curl.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Exception_Json.
*

View file

@ -1,17 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Proxy - RetailCRM Integration.
*
* @category Integration
* @package WC_Retailcrm_Proxy
* @author RetailCRM <dev@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
if (!class_exists('WC_Retailcrm_Proxy')) :
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Proxy - RetailCRM Integration.
*
* @category Integration
* @package WC_Retailcrm_Proxy
* @author RetailCRM <dev@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
class WC_Retailcrm_Proxy
{
protected $retailcrm;

View file

@ -1,15 +1,4 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Request - Request class.
*
* @category Integration
* @package WC_Retailcrm_Request
* @author RetailCRM <dev@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
if (!class_exists('WC_Retailcrm_Exception_Curl')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-exception-curl.php'));
@ -19,6 +8,17 @@ if (!class_exists('WC_Retailcrm_Response')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-response.php'));
}
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Request - Request class.
*
* @category Integration
* @package WC_Retailcrm_Request
* @author RetailCRM <dev@retailcrm.ru>
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
class WC_Retailcrm_Request
{
const METHOD_GET = 'GET';

View file

@ -1,6 +1,11 @@
<?php
if (!class_exists('WC_Retailcrm_Exception_Json')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-exception-json.php'));
}
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Response - Response class.
*
@ -10,11 +15,6 @@
* @license https://opensource.org/licenses/MIT MIT License
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
*/
if (!class_exists('WC_Retailcrm_Exception_Json')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-exception-json.php'));
}
class WC_Retailcrm_Response implements \ArrayAccess
{
// HTTP response status code

View file

@ -1,22 +1,21 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Base - Main settings plugin.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Base')) {
if (!class_exists('WC_Retailcrm_Abstracts_Settings')) {
include_once(WC_Integration_Retailcrm::checkCustomFile('include/abstracts/class-wc-retailcrm-abstracts-settings.php'));
}
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Base - Main settings plugin.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Base extends WC_Retailcrm_Abstracts_Settings
{
/** @var WC_Retailcrm_Proxy|WC_Retailcrm_Client_V5|bool */

View file

@ -1,17 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Customers - Allows transfer data customers with CMS.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Customers')) :
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Customers - Allows transfer data customers with CMS.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Customers
{
/** @var bool | WC_Retailcrm_Proxy | \WC_Retailcrm_Client_V5 */

View file

@ -1,6 +1,11 @@
<?php
if (!defined('ABSPATH')) {
exit;
}
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Daemon_Collector - Integration with Daemon Collector.
*
@ -10,11 +15,6 @@
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!defined('ABSPATH')) {
exit;
}
class WC_Retailcrm_Daemon_Collector {
/** @var self $instance */
private static $instance;

View file

@ -1,17 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Google_Analytics - Integration with Google Analytics.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Google_Analytics')) {
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Google_Analytics - Integration with Google Analytics.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Google_Analytics {
private static $instance;
private $options;

View file

@ -1,18 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_History - Allows transfer data orders/customers with CRM.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_History')) :
/**
* PHP version 7.0
*
* Class WC_Retailcrm_History - Allows transfer data orders/customers with CRM.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_History
{
const PAGE_LIMIT = 25;

View file

@ -1,17 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Inventories - Allows manage stocks.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Inventories')) :
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Inventories - Allows manage stocks.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Inventories
{
/** @var WC_Retailcrm_Client_V5 */

View file

@ -1,17 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Orders - Allows transfer data orders with CMS.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Orders')) :
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Orders - Allows transfer data orders with CMS.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Orders
{
/** @var bool|WC_Retailcrm_Proxy|WC_Retailcrm_Client_V5 */

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Plugin - Internal plugin settings.
*

View file

@ -1,17 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Uploader - Allows upload archival orders/customers in CRM.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (class_exists('WC_Retailcrm_Uploader') === false) {
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Uploader - Allows upload archival orders/customers in CRM.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Uploader
{
const RETAILCRM_COUNT_OBJECT_UPLOAD = 50;

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Switcher - This component provides builder-like interface in order to make it easier to
* change customer & customer data in the order via retailCRM history.

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_History_Assembler - Assembles history records into list which closely resembles
* orders & customers list output from API.

View file

@ -1,18 +1,17 @@
<?php
/**
* PHP version 5.6
*
* Class WC_Retailcrm_Logger - Allows display important debug information.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Logger') && class_exists('WC_Log_Levels')) :
/**
* PHP version 7.0
*
* Class WC_Retailcrm_Logger - Allows display important debug information.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
* @codeCoverageIgnore
*/
class WC_Retailcrm_Logger

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Address - Builds a billing address for a customer.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Corporate_Address - Builds a billing address for a corporate customer.
*

View file

@ -1,7 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_WC_Customer_Builder - It converts retailCRM customer data (array) into WC_Customer.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Interface WC_Retailcrm_Builder_Interface - Main interface for builders. All builders.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Switcher_Result - Holds modified order and customer which was set in the order.
* If customer is null, then only order props was updated. Previous customer (if it was registered)
@ -31,7 +32,8 @@ class WC_Retailcrm_Customer_Switcher_Result
$this->wcCustomer = $wcCustomer;
$this->wcOrder = $wcOrder;
if ((!is_null($this->wcCustomer) && !($this->wcCustomer instanceof WC_Customer))
if (
(!is_null($this->wcCustomer) && !($this->wcCustomer instanceof WC_Customer))
|| !($this->wcOrder instanceof WC_Order)
) {
throw new \InvalidArgumentException(sprintf('Incorrect data provided to %s', __CLASS__));

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Switcher_State - Holds WC_Retailcrm_Customer_Switcher state.
* It exists only because we need to comply with builder interface.
@ -14,13 +15,13 @@
class WC_Retailcrm_Customer_Switcher_State
{
/** @var \WC_Order $wcOrder */
private $wcOrder;
private $wcOrder;
/** @var array */
private $newCustomer;
private $newCustomer;
/** @var array */
private $newContact;
private $newContact;
/** @var string $newCompanyName */
private $newCompanyName;
@ -183,4 +184,3 @@ class WC_Retailcrm_Customer_Switcher_State
}
}
}

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Address - Build address for CRM order.
*

View file

@ -1,7 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Item - Build items for CRM order.
*

View file

@ -1,7 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Payment - Build payments for CRM order.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order - Build main data for CRM order.
*

View file

@ -2,10 +2,10 @@
Contributors: Simla.com
Donate link: https://www.simla.com
Tags: Интеграция, Simla.com, simla
Requires PHP: 5.6
Requires PHP: 7.0
Requires at least: 5.3
Tested up to: 6.0
Stable tag: 4.4.9
Stable tag: 4.5.0
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html
@ -82,6 +82,11 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog ==
= 4.5.0 =
* Migrating to PHP 7.0.
* Change logic work with ICML catalog: added streaming generation, added generators in the ICML generation process.
* Change logic work with address
= 4.4.9 =
* Fix bug with product tax

View file

@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Version: 4.4.9
* Version: 4.5.0
* Tested up to: 6.0
* WC requires at least: 5.4
* WC tested up to: 6.7
@ -117,6 +117,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
require_once(self::checkCustomFile('include/customer/class-wc-retailcrm-customer-address.php'));
require_once(self::checkCustomFile('include/customer/class-wc-retailcrm-customer-corporate-address.php'));
require_once(self::checkCustomFile('include/class-wc-retailcrm-icml.php'));
require_once(self::checkCustomFile('include/icml/class-wc-retailcrm-icml-writer.php'));
require_once(self::checkCustomFile('include/class-wc-retailcrm-orders.php'));
require_once(self::checkCustomFile('include/class-wc-retailcrm-customers.php'));
require_once(self::checkCustomFile('include/class-wc-retailcrm-inventories.php'));

View file

@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.4.9
* @version 4.5.0
*
* @package RetailCRM
*/

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Abstracts_Settings_Test - Testing WC_Retailcrm_Abstracts_Settings.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Address_Test - Testing WC_Retailcrm_Customer_Address.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Corporate_Address_Test - Testing WC_Retailcrm_Customer_Corporate_Address.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_WC_Customer_Builder_Test - Testing WC_Retailcrm_WC_Customer_Builder.
*

View file

@ -3,7 +3,7 @@
namespace datasets;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class DataBaseRetailCrm - Data set for WC_Retailcrm_Base.
*

View file

@ -3,7 +3,7 @@
namespace datasets;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class DataCustomersRetailCrm - Data set for WC_Retailcrm_Customers.
*

View file

@ -3,7 +3,7 @@
namespace datasets;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class DataHistoryRetailCrm - Data set for WC_Retailcrm_History.
*

View file

@ -3,7 +3,7 @@
namespace datasets;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class DataInventoriesRetailCrm - Data set for WC_Retailcrm_Inventories.
*

View file

@ -1,6 +1,11 @@
<?php
if (!defined( 'ABSPATH')) {
exit;
}
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Log_Handler_Stdout - Handles log entries by writing to a stdout.
*
@ -10,11 +15,6 @@
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!defined( 'ABSPATH')) {
exit;
}
class WC_Retailcrm_Log_Handler_Stdout extends WC_Log_Handler
{
/**

View file

@ -1,6 +1,11 @@
<?php
if (!class_exists('WC_Retailcrm_Response')) {
require_once dirname(__FILE__) . '/../../src/include/api/class-wc-retailcrm-response.php';
}
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Response_Helper - Set response for mock object.
*
@ -10,11 +15,6 @@
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
if (!class_exists('WC_Retailcrm_Response')) {
require_once dirname(__FILE__) . '/../../src/include/api/class-wc-retailcrm-response.php';
}
class WC_Retailcrm_Response_Helper extends WC_Retailcrm_Response
{
public function setResponse($response)

View file

@ -1,7 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Test_Case_Helper - Helper for testing.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Switcher_Result_Test - Testing WC_Retailcrm_Customer_Switcher_Result.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customer_Switcher_State_Test - Testing WC_Retailcrm_Customer_Switcher_State.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Address_Test - Testing WC_Retailcrm_Order_Address.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Item_Test - Testing WC_Retailcrm_Order_Item.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Payment_Test - Testing WC_Retailcrm_Order_Payment.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Order_Test - Testing WC_Retailcrm_Order.
*

View file

@ -3,7 +3,7 @@
use datasets\DataBaseRetailCrm;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Base_Test - Testing WC_Retailcrm_Base.
*

View file

@ -3,7 +3,7 @@
use datasets\DataCustomersRetailCrm;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Customers_Test - Testing WC_Retailcrm_Customers.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Daemon_Collector_Test - Testing WC_Retailcrm_Daemon_Collector.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Google_Analytics_Test - Testing WC_Retailcrm_Google_Analytics.
*

View file

@ -3,7 +3,7 @@
use datasets\DataHistoryRetailCrm;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_History_Test - Testing WC_Retailcrm_History.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Icml_Test - Testing WC_Retailcrm_Icml.
*

View file

@ -3,7 +3,7 @@
use datasets\DataInventoriesRetailCrm;
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Inventories_Test - Testing WC_Retailcrm_Inventories.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Orders_Test - Testing WC_Retailcrm_Orders.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Plugin_Test - Testing WC_Retailcrm_Plugin.
*

View file

@ -1,6 +1,7 @@
<?php
/**
* PHP version 5.6
* PHP version 7.0
*
* Class WC_Retailcrm_Uploader_Test - Testing WC_Retailcrm_Uploader.
*