File "SMS.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/app/Channels/Messages/SMS.php
File size: 192 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Channels\Messages;

class SMS
{
    public $content;

    public function content($content): static
    {
        $this->content = $content;
        return $this;
    }
}