SimpleSoftwareIO\SMS\Drivers\ZenviaSMS::__construct PHP Method

__construct() public method

ZenviaSMS constructor.
public __construct ( Client $client, $accountKey, $passCode, string $callbackOption = 'NONE' )
$client GuzzleHttp\Client
$accountKey
$passCode
$callbackOption string
    public function __construct(Client $client, $accountKey, $passCode, $callbackOption = 'NONE')
    {
        $this->client = $client;
        $this->setUser($accountKey);
        $this->setPassword($passCode);
        $this->callbackOption = $callbackOption;
    }