for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Smspoh;
class SmspohMessage
{
/**
* The message content.
*
* @var string
*/
public $content;
* The sander name the message should be sent from.
public $sender;
* Set the test message Send a test message to specific mobile number.
* @var bool
public $test = false;
* Create a new message instance.
* @param string $content
* @return void
public function __construct($content = '')
$this->content = $content;
}
* Set the message content.
* @return $this
public function content($content)
return $this;
* Set the sender name the message should be sent from.
* @param string $sender
public function sender($sender)
$this->sender = $sender;
* @param bool $test
public function test($test = true)
$this->test = $test;