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