| Conditions | 3 |
| Paths | 2 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function setText(string $text = '') : SMSender\IMessage |
||
| 30 | { |
||
| 31 | 1 | if (strlen($text) < 1 OR strlen($text) > 459) |
|
| 32 | 1 | throw new InvalidArgumentException('Parameter "text" must be length 1-459 characters. Has ' . strlen($text) . ' characters.'); |
|
| 33 | 1 | return parent::setText(Strings::toAscii($text)); |
|
| 34 | } |
||
| 35 | } |
||
| 36 |