Omnipay\Alipay\Requests\LegacyNotifyRequest::setVerifyNotifyId PHP Method

setVerifyNotifyId() public method

public setVerifyNotifyId ( boolean $verifyNotifyId )
$verifyNotifyId boolean
    public function setVerifyNotifyId($verifyNotifyId)
    {
        $this->verifyNotifyId = $verifyNotifyId;
        return $this;
    }

Usage Example

 /**
  * 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);
 }
All Usage Examples Of Omnipay\Alipay\Requests\LegacyNotifyRequest::setVerifyNotifyId