for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omnipay\Redsys\Message;
/**
* Redsys Complete Purchase Request.
*/
class CompletePurchaseRequest extends PurchaseRequest
{
public function getData()
return array_merge($this->httpRequest->query->all(), $this->httpRequest->request->all());
}
public function sendData($data)
return $this->response = new CompletePurchaseResponse($this, $data);