| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 59 | public function message($message) |
||
| 60 | { |
||
| 61 | if (!is_string($message)) { |
||
| 62 | throw new \Exception("Message text should be a string."); |
||
| 63 | } |
||
| 64 | if (trim($message) == '') { |
||
| 65 | throw new \Exception("Message text could not be empty."); |
||
| 66 | } |
||
| 67 | $this->body = $message; |
||
| 68 | |||
| 69 | return $this; |
||
| 70 | } |
||
| 71 | |||
| 79 |