PHP Class SimpleSoftwareIO\SMS\Drivers\EZTextingSMS

Inheritance: extends AbstractSMS, implements SimpleSoftwareIO\SMS\Drivers\DriverInterface, use trait SimpleSoftwareIO\SMS\MakesRequests
Mostrar archivo Open project: simplesoftwareio/simple-sms Class Usage Examples

Protected Properties

Property Type Description
$apiBase string The API's URL.
$apiEnding array The ending of the URL that all requests must have.
$client GuzzleHttp\Client The Guzzle HTTP Client.

Public Methods

Method Description
__construct ( Client $client ) Constructs a new instance.
checkMessages ( array $options = [] ) : array Checks the server for messages and returns their results.
getMessage ( string | integer $messageId ) : IncomingMessage Gets a single message by it's ID.
receive ( mixed $raw ) : IncomingMessage Receives an incoming message via REST call.
send ( OutgoingMessage $message ) Sends a SMS message.

Protected Methods

Method Description
processReceive ( $rawMessage ) : mixed | IncomingMessage Returns an IncomingMessage object with it's properties filled out.

Method Details

__construct() public method

Constructs a new instance.
public __construct ( Client $client )
$client GuzzleHttp\Client

checkMessages() public method

Checks the server for messages and returns their results.
public checkMessages ( array $options = [] ) : array
$options array
return array

getMessage() public method

Gets a single message by it's ID.
public getMessage ( string | integer $messageId ) : IncomingMessage
$messageId string | integer
return SimpleSoftwareIO\SMS\IncomingMessage

processReceive() protected method

Returns an IncomingMessage object with it's properties filled out.
protected processReceive ( $rawMessage ) : mixed | IncomingMessage
$rawMessage
return mixed | SimpleSoftwareIO\SMS\IncomingMessage

receive() public method

Receives an incoming message via REST call.
public receive ( mixed $raw ) : IncomingMessage
$raw mixed
return SimpleSoftwareIO\SMS\IncomingMessage

send() public method

Sends a SMS message.
public send ( OutgoingMessage $message )
$message SimpleSoftwareIO\SMS\OutgoingMessage

Property Details

$apiBase protected_oe property

The API's URL.
protected string $apiBase
return string

$apiEnding protected_oe property

The ending of the URL that all requests must have.
protected array $apiEnding
return array

$client protected_oe property

The Guzzle HTTP Client.
protected Client,GuzzleHttp $client
return GuzzleHttp\Client