for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\RayganSms;
class AuthCodeMessage
{
/**
* @var string
*/
public $content;
* @var bool
public $autoGenerate;
public $type = 'auth';
* @param string $content
*
* @return $this
public function content($content)
$this->content = $content;
return $this;
}
* @param bool $autoGenerateCode
public function autoGenerate($autoGenerate = true)
$this->autoGenerate = $autoGenerate;
* Get an array representation of the message.
* @return array
public function toArray()
return [
'content' => $this->content,
'autoGenerate' => $this->autoGenerate,
];