for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\SmsBroadcast;
class SmsBroadcastMessage
{
/** @var string */
public $content;
/** @var string|null */
public $sender = null;
public $reference = null;
/** @var int|null */
public $delay = null;
public function __construct(string $content = '')
$this->content = $content;
}
public function content(string $content): self
return $this;
public function sender(string $sender): self
$this->sender = $sender;
public function delay(int $delayMinutes): self
$this->delay = $delayMinutes;
public function reference(string $reference): self
$this->reference = $reference;