1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Closes #117 - updated from retailcrm/api-client-php

This commit is contained in:
Pavel 2020-05-26 17:39:33 +03:00
parent d0dfc39da0
commit cf31c1eb30

View file

@ -274,9 +274,12 @@ class WC_Retailcrm_Client_V5
);
}
if (empty($entity) || $entity != 'customer' || $entity != 'order') {
if (empty($entity) || !in_array($entity, ['customer', 'order', 'customer_corporate', 'company'])) {
throw new \InvalidArgumentException(
'Parameter `entity` must contain a data & value must be `order` or `customer`'
sprintf(
'Parameter `entity` must contain a data & value must be %s',
'`order`, `customer`, `customer_corporate` or `company`'
)
);
}