for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Vodafone;
class VodafoneMessage
{
/**
* @var string
*/
public $content;
* @var array
public $from;
* Create a new message instance.
*
* @param string $content
* @return void
public function __construct($content = '')
$this->content = $content;
}
* Set the notification content.
* @param string $value
* @return $this
public function content($value)
$this->content = $value;
return $this;
* Set the notification sender.
public function from($value)
$this->from = $value;
$value
string
array
$from
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
* Set the message type.
public function unicode()
$this->type = 'unicode';
type
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..