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

setProperties() protected method

Sets the phone number and message for a sms message.
protected setProperties ( array $arguments )
$arguments array
    protected function setProperties(array $arguments)
    {
        if (isset($arguments[0])) {
            $this->phoneNumber = $arguments[0];
        }
        if (isset($arguments[1])) {
            $this->message = $arguments[1];
        }
    }