for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gabievi\LaravelSMSOffice;
class SMSOfficeMessage
{
/**
* The message content.
*
* @var string
*/
public $content = '';
* Create a new message instance.
* @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;