本文整理汇总了PHP中litle\sdk\LitleOnlineRequest::authReversalRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP LitleOnlineRequest::authReversalRequest方法的具体用法?PHP LitleOnlineRequest::authReversalRequest怎么用?PHP LitleOnlineRequest::authReversalRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类litle\sdk\LitleOnlineRequest
的用法示例。
在下文中一共展示了LitleOnlineRequest::authReversalRequest方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_authReversal
public function test_authReversal()
{
$hash_in = array('id' => '1211', 'litleTxnId' => '12345678000', 'amount' => '123', 'payPalNotes' => 'Notes');
$litle = new LitleOnlineRequest($treeResponse = true);
$response = $litle->authReversalRequest($hash_in);
$this->assertEquals('001', $response->authReversalResponse->response);
}
示例2: array
function test_simple_authreversal_fields_out_of_order()
{
$hash_in = array('amount' => '123', 'payPalNotes' => 'Notes', 'litleTxnId' => '12345678000');
$initilaize = new LitleOnlineRequest();
$authReversalResponse = $initilaize->authReversalRequest($hash_in);
$response = XmlParser::getNode($authReversalResponse, 'response');
$this->assertEquals('000', $response);
}
示例3: authReversalRequest
/**
* Make an authReversal request.
*
* This method wraps the LitleOnlineRequest.
*
* @param array $hash_in
* The request data.
*
* @return DOMDocument|SimpleXMLElement
* The response.
*/
public function authReversalRequest($hash_in)
{
return $this->request->authReversalRequest($hash_in);
}
示例4: test_36
public function test_36()
{
$auth_hash = array('id' => '1211', 'orderId' => '36', 'amount' => '20500', 'orderSource' => 'ecommerce', 'card' => array('number' => '375000026600004', 'expDate' => '0512', 'type' => 'AX'));
$initilaize = new LitleOnlineRequest();
$authorizationResponse = $initilaize->authorizationRequest($auth_hash);
$this->assertEquals('000', XmlParser::getNode($authorizationResponse, 'response'));
$this->assertEquals('Approved', XmlParser::getNode($authorizationResponse, 'message'));
//test 33A
$authReversal_hash = array('id' => '1211', 'litleTxnId' => XmlParser::getNode($authorizationResponse, 'litleTxnId'), 'reportGroup' => 'planets', 'amount' => '10000');
$initilaize = new LitleOnlineRequest();
$authReversalResponse = $initilaize->authReversalRequest($authReversal_hash);
$this->assertEquals('001', XmlParser::getNode($authReversalResponse, 'response'));
$this->assertEquals('Transaction Received', XmlParser::getNode($authReversalResponse, 'message'));
}