for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Infobip;
class InfobipConfig
{
/**
* @var InfobipConfig
*/
public $config;
* InfobipConfig constructor.
*
* @param array $config
public function __construct(array $config)
$this->config = $config;
$config
array
object<NotificationChann...\Infobip\InfobipConfig>
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..
}
* @return mixed
public function getFrom()
return $this->config['from'];
public function getNotifyUrl()
return $this->config['notify_url'];
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..