![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/vendor/laravel-notification-channels/twilio/src/ |
<?php namespace NotificationChannels\Twilio; abstract class TwilioMessage { /** * The message content. * * @var string */ public $content; /** * The phone number the message should be sent from. * * @var string */ public $from; /** * @var null|string */ public $statusCallback; /** * @var null|string */ public $statusCallbackMethod; /** * Create a message object. * @param string $content * @return static */ public static function create(string $content = ''): self { return new static($content); } /** * Create a new message instance. * * @param string $content */ public function __construct(string $content = '') { $this->content = $content; } /** * Set the message content. * * @param string $content * @return $this */ public function content(string $content): self { $this->content = $content; return $this; } /** * Set the phone number the message should be sent from. * * @param string $from * @return $this */ public function from(string $from): self { $this->from = $from; return $this; } /** * Get the from address. * * @return string|null */ public function getFrom(): ?string { return $this->from; } /** * Set the status callback. * * @param string $statusCallback * @return $this */ public function statusCallback(string $statusCallback): self { $this->statusCallback = $statusCallback; return $this; } /** * Set the status callback request method. * * @param string $statusCallbackMethod * @return $this */ public function statusCallbackMethod(string $statusCallbackMethod): self { $this->statusCallbackMethod = $statusCallbackMethod; return $this; } }