public static function invalidReference(string $reference): self
10
{
11
3
return new static("The reference on the CMSMS message may only contain 1 - 32 alphanumeric characters. Was given '{$reference}'");
12
}
13
14
2
public static function invalidOriginator(string $originator): self
15
{
16
2
return new static("The originator on the CMSMS message may only contain 1 - 11 characters. Was given '{$originator}'");
17
}
18
19
1
public static function invalidMultipart(int $minimum, int $maximum): self
20
{
21
1
return new static("The number of message parts for sending a multipart message on the CMSMS message may only contain a integer range from 0 to 8. Was given a minimum of '{$minimum}' and maximum of '{$maximum}'");