PHP Класс SimpleSoftwareIO\SMS\Drivers\CallFireSMS

Наследование: extends AbstractSMS, implements SimpleSoftwareIO\SMS\Drivers\DriverInterface, use trait SimpleSoftwareIO\SMS\MakesRequests
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$apiBase string The API's URL.
$client GuzzleHttp\Client The Guzzle HTTP Client.

Открытые методы

Метод Описание
__construct ( Client $client, $username, $password ) Create the CallFire 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.

Защищенные методы

Метод Описание
processReceive ( $rawMessage ) : mixed Creates many IncomingMessage objects and sets all of the properties.

Описание методов

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

Create the CallFire instance.
public __construct ( Client $client, $username, $password )
$client GuzzleHttp\Client The Guzzle Client

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

Checks the server for messages and returns their results.
public checkMessages ( array $options = [] ) : array
$options array
Результат array

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

Gets a single message by it's ID.
public getMessage ( string | integer $messageId ) : IncomingMessage
$messageId string | integer
Результат SimpleSoftwareIO\SMS\IncomingMessage

processReceive() защищенный Метод

Creates many IncomingMessage objects and sets all of the properties.
protected processReceive ( $rawMessage ) : mixed
$rawMessage
Результат mixed

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

Receives an incoming message via REST call.
public receive ( mixed $raw ) : IncomingMessage
$raw mixed
Результат SimpleSoftwareIO\SMS\IncomingMessage

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

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

Описание свойств

$apiBase защищенное свойство

The API's URL.
protected string $apiBase
Результат string

$client защищенное свойство

The Guzzle HTTP Client.
protected Client,GuzzleHttp $client
Результат GuzzleHttp\Client