for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Jusibe;
class JusibeMessage
{
/**
* The message content.
*
* @var string
*/
public $content;
* The phone number the message should be sent from.
public $from;
* @param string $content
* @return static
public static function create($content = '')
return new static($content);
}
public function __construct($content = '')
$this->content = $content;
* Set the message content.
* @return $this
public function content($content)
return $this;
* Set the phone number the message should be sent from.
* @param string $from
public function from($from)
$this->from = $from;