Mdb\PayPal\Ipn\Message::getAll PHP Метод

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

public getAll ( ) : array
Результат array
    public function getAll()
    {
        return $this->data;
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 public function verifyIpnMessage(Message $message)
 {
     $requestBody = array_merge(['cmd' => '_notify-validate'], $message->getAll());
     try {
         $response = $this->httpClient->post($this->serviceEndpoint, array('form_params' => $requestBody));
     } catch (\Exception $e) {
         throw new ServiceException($e->getMessage());
     }
     return new ServiceResponse((string) $response->getBody());
 }
All Usage Examples Of Mdb\PayPal\Ipn\Message::getAll