%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/omnipay/common/src/Common/Message/ |
| Current File : /home/graphicd/public_html/vebto/vendor/omnipay/common/src/Common/Message/MessageInterface.php |
<?php
/**
* Message Interface
*/
namespace Omnipay\Common\Message;
/**
* Message Interface
*
* This interface class defines the standard functions that any Omnipay message
* interface needs to be able to provide.
*/
interface MessageInterface
{
/**
* Get the raw data array for this message. The format of this varies from gateway to
* gateway, but will usually be either an associative array, or a SimpleXMLElement.
*
* @return mixed
*/
public function getData();
}