Inheritance: extends AbstractLegacyRequest
 /**
  * Send the request with specified data
  *
  * @param  mixed $data The data to send
  *
  * @return ResponseInterface
  */
 public function sendData($data)
 {
     $request = new LegacyNotifyRequest($this->httpClient, $this->httpRequest);
     $request->initialize($this->parameters->all());
     $request->setAlipayPublicKey($this->getAlipayPublicKey());
     $request->setVerifyNotifyId($this->verifyNotifyId);
     $response = $request->send();
     $data = $response->getData();
     return $this->response = new LegacyCompletePurchaseResponse($this, $data);
 }
 /**
  * Send the request with specified data
  *
  * @param  mixed $data The data to send
  *
  * @return ResponseInterface
  */
 public function sendData($data)
 {
     if (array_get($data, 'result')) {
         $request = new LegacyVerifyAppPayReturnRequest($this->httpClient, $this->httpRequest);
         $request->initialize($this->parameters->all());
         $request->setResult($data['result']);
         $request->setAlipayPublicKey($this->getAlipayPublicKey());
         $data = $request->send()->getData();
         $data = array_map(function ($v) {
             return substr($v, 1, mb_strlen($v) - 2) . '';
         }, $data);
         if (array_get($data, 'success') == 'true') {
             $data['trade_status'] = 'TRADE_SUCCESS';
         } else {
             $data['trade_status'] = 'WAIT_BUYER_PAY';
         }
     } else {
         $request = new LegacyNotifyRequest($this->httpClient, $this->httpRequest);
         $request->initialize($this->parameters->all());
         $request->setAlipayPublicKey($this->getAlipayPublicKey());
         $request->setVerifyNotifyId($this->verifyNotifyId);
         $request->setKey($this->getKey());
         $response = $request->send();
         $data = $response->getData();
     }
     return $this->response = new LegacyCompletePurchaseResponse($this, $data);
 }
 /**
  * Send the request with specified data
  *
  * @param  mixed $data The data to send
  *
  * @return ResponseInterface
  * @throws InvalidRequestException
  */
 public function sendData($data)
 {
     $request = new LegacyNotifyRequest($this->httpClient, $this->httpRequest);
     $request->initialize($this->parameters->all());
     $request->setParams($data);
     $request->setSort(false);
     $request->setAlipayPublicKey($this->getAlipayPublicKey());
     /**
      * @var LegacyNotifyResponse $response
      */
     $response = $request->send();
     return $response;
 }