| 1 | <?php |
||
| 5 | class Comment |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | */ |
||
| 11 | private $message = null; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | private $attachments = []; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $attachment |
||
| 20 | */ |
||
| 21 | 3 | public function addAttachment($attachment) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $message |
||
| 28 | */ |
||
| 29 | 3 | public function setMessage($message) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | 9 | public function toArray() |
|
| 49 | |||
| 50 | } |
||
| 51 |