1 | <?php |
||
10 | class Text implements Body, Footprintable |
||
11 | { |
||
12 | use |
||
13 | StringManipulation; |
||
14 | |||
15 | private |
||
16 | $content; |
||
17 | |||
18 | 27 | public function __construct($text = '') |
|
22 | |||
23 | 9 | public function inOriginalFormat() |
|
27 | |||
28 | 22 | public function asTransported() |
|
32 | |||
33 | 11 | public function getContentType() |
|
37 | |||
38 | 9 | public function __toString() |
|
42 | |||
43 | 2 | public function footprint() |
|
47 | |||
48 | 27 | public function changeText($text) |
|
57 | |||
58 | 2 | public function append(...$text) |
|
65 | |||
66 | 1 | public function isChunked() |
|
70 | } |
||
71 |