for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\RayganSms;
class RayganSmsMessage
{
/**
* @var string
*/
public $content;
* @param string $content
*
* @return static
public static function create($content = '')
return new static($content);
}
public function __construct($content = '')
$this->content = $content;
* @return $this
public function content($content)
return $this;
* @return string
public function getContent()
return $this->content;