| 1 | <?php |
||
| 13 | trait BodyPart { |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | private $body = ''; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Sets the body for this |
||
| 20 | * |
||
| 21 | * @param string $body |
||
| 22 | * @return $this |
||
| 23 | */ |
||
| 24 | 2 | public function setBody(string $body) { |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Returns the body |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | 17 | public function getBody(): string { |
|
| 38 | } |
||
| 39 |