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

hasAResponseMessage() protected method

Check for a message in the response from Nexmo
protected hasAResponseMessage ( $body )
$body
    protected function hasAResponseMessage($body)
    {
        return is_array($body) && array_key_exists('messages', $body) && array_key_exists(0, $body['messages']);
    }