1 | <?php |
||
11 | trait BodyPart { |
||
12 | |||
13 | /** @var string */ |
||
14 | private $body = ''; |
||
15 | |||
16 | /** |
||
17 | * Sets the body for this |
||
18 | * |
||
19 | * @param string $body |
||
20 | * @return $this |
||
21 | */ |
||
22 | 9 | public function setBody($body) { |
|
27 | |||
28 | /** |
||
29 | * Returns the body |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | 18 | public function getBody() { |
|
36 | } |
||
37 |