1
0
mirror of synced 2025-01-31 15:22:22 +03:00
woocommerce-module/tests/helpers/class-wc-retailcrm-response-helper.php

25 lines
606 B
PHP
Raw Normal View History

<?php
if (!class_exists('WC_Retailcrm_Response')) {
require_once dirname(__FILE__) . '/../../src/include/api/class-wc-retailcrm-response.php';
}
2022-01-10 12:53:00 +03:00
/**
* PHP version 7.0
2022-01-10 12:53:00 +03:00
*
* Class WC_Retailcrm_Response_Helper - Set response for mock object.
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_Response_Helper extends WC_Retailcrm_Response
{
public function setResponse($response)
{
$this->response = $response;
}
}