for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\TotalVoice;
abstract class TotalVoiceMessage
{
/**
* The message content.
*
* @var string
*/
public $content;
* Aguardar uma resposta do destinatário.
* @var bool
public $provide_feedback = false;
* Create a message object.
* @param string $content
* @return static
public static function create($content = '')
return new static($content);
}
* Create a new message instance.
public function __construct($content = '')
$this->content = $content;
* Set the message content.
* @return $this
public function content($content)
return $this;
* Set the provide feedback option.
* @param bool $provideFeedback
public function provideFeedback($provideFeedback)
$this->provide_feedback = $provideFeedback;
* Get the provide feedback option.
* @return null|bool
public function getProvideFeedback()
return $this->provide_feedback;