Omnipay\Alipay\Requests\LegacyNotifyRequest::sendData PHP Метод

sendData() публичный Метод

Send the request with specified data
public sendData ( mixed $data ) : Omnipay\Common\Message\ResponseInterface
$data mixed The data to send
Результат Omnipay\Common\Message\ResponseInterface
    public function sendData($data)
    {
        $this->verifySignature();
        if ($this->params->has('notify_id')) {
            if ($this->verifyNotifyId) {
                $this->verifyNotifyId();
            }
        }
        return $this->response = new LegacyNotifyResponse($this, $data);
    }