1 | <?php |
||
9 | class Json implements Body, Footprintable |
||
10 | { |
||
11 | private |
||
12 | $jsonAsArray; |
||
13 | |||
14 | 16 | public function __construct($content = []) |
|
18 | |||
19 | 6 | public function inOriginalFormat() |
|
23 | |||
24 | 10 | public function asTransported() |
|
28 | |||
29 | 5 | public function getContentType() |
|
33 | |||
34 | 1 | public function __toString() |
|
38 | |||
39 | 2 | public function footprint() |
|
43 | |||
44 | 16 | public function changeContent($content) |
|
53 | |||
54 | 10 | public function changeContentWithJson($json) |
|
58 | |||
59 | 1 | public function isChunked() |
|
63 | } |
||
64 |