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