1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
This commit is contained in:
dima-uryvskiy 2020-05-27 10:47:21 +03:00
parent 6811017f4d
commit c4efa35e76

View file

@ -44,6 +44,8 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) :
public function __call($method, $arguments)
{
$response = null;
try {
$response = call_user_func_array(array($this->retailcrm, $method), $arguments);
@ -72,7 +74,7 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) :
$this->logger->add('retailcrm', sprintf("[%s] %s - %s", $method, $exception->getMessage(), $result));
}
return $response;
return !empty($response) ? $response : new WC_Retailcrm_Response(900, '{}');
}
}
endif;