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

__construct() public method

Create the CallFire instance.
public __construct ( Client $client, $apiKey, $apiSecret )
$client GuzzleHttp\Client The Guzzle Client
    public function __construct(Client $client, $apiKey, $apiSecret)
    {
        $this->client = $client;
        $this->apiKey = $apiKey;
        $this->apiSecret = $apiSecret;
    }