It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
public static function invalidMessageObject($message)
16
{
17
2
$className = get_class($message) ?: 'Unknown';
18
19
1
return new static("Notification was not sent. Message object class `{$className}` is invalid. It should be either `".SmsMessage::class.'` or `'.CallMessage::class.'`');
20
}
21
22
/**
23
* @return static
24
*/
25
1
public static function missingFrom()
26
{
27
1
return new static('Notification was not sent. Missing `from` number.');