for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Infobip;
class InfobipMessage
{
public $content;
public $from;
/**
* InfobipMessage constructor.
*
* @param string $content
*/
public function __construct($content = '')
$this->content = $content;
}
* @param $content
* @return $this
public function content($content)
return $this;
* Set the phone number this message is sent from.
* @param $from
public function from($from)
$this->from = $from;
* Get the phone number this message is sent from.
* @return string
public function getFrom()
return $this->from;