SimpleSoftwareIO\QrCode\DataTypes\SMS::buildSMSString PHP Method

buildSMSString() protected method

Builds a SMS string.
protected buildSMSString ( ) : string
return string
    protected function buildSMSString()
    {
        $sms = $this->prefix . $this->phoneNumber;
        if (isset($this->message)) {
            $sms .= $this->separator . $this->message;
        }
        return $sms;
    }