for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\ZonerSmsGateway;
class ZonerSmsGatewayMessage
{
/**
* The message content.
*
* @var string
*/
public $content;
* The phone number the message should be sent from.
public $sender;
* The phone number the message should be sent to.
public $receiver;
* Create a new message instance.
* @param string $content
public function __construct($content = '')
$this->content = $content;
}
* Set the message content.
* @return $this
public function content($content)
return $this;
* Set the phone number the message should be sent from.
* @param string $sender
public function sender($sender)
$this->sender = $sender;
* Set the phone number the message should be sent to.
* @param string $receiver
public function receiver($receiver)
$this->receiver = $receiver;