/** * Send the request with specified data * * @param mixed $data The data to send * @return PaymentResponse */ public function sendData($data) { $response = new PaymentResponse($this, $data); $response->setVerifier($this->getVerifier()); return $this->response = $response; }