1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
This commit is contained in:
ellynoize 2025-02-18 09:59:41 +03:00
parent 720aafc464
commit 716b4a3855
6 changed files with 13 additions and 6 deletions

View file

@ -1,3 +1,6 @@
## 2025-02-18 4.8.20
* Add returned types for methods
## 2025-02-04 4.8.19
* Optimization of order unloading

View file

@ -1 +1 @@
4.8.19
4.8.20

View file

@ -153,11 +153,12 @@ class WC_Retailcrm_Response implements \ArrayAccess
* Get offset
*
* @param mixed $offset offset
*
* @return mixed
* @throws \InvalidArgumentException
*
* TODO PHP 7.1 не поддерживает тип mixed. Оператор | для перечисления типов также не поддерживается
*/
public function offsetGet($offset): object|array|string|float|int|bool|null
public function offsetGet($offset)
{
if (!isset($this->response[$offset])) {
throw new \InvalidArgumentException("Property \"$offset\" not found");

View file

@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.1
Requires at least: 5.3
Tested up to: 6.5
Stable tag: 4.8.19
Stable tag: 4.8.20
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html
@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog ==
= 4.8.20 =
* Add returned types for methods
= 4.8.19 =
* Optimization of order unloading

View file

@ -27,7 +27,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
class WC_Integration_Retailcrm {
const WOOCOMMERCE_SLUG = 'woocommerce';
const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php';
const MODULE_VERSION = '4.8.19';
const MODULE_VERSION = '4.8.20';
private static $instance;

View file

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