1 | <?php |
||
4 | class RawBody extends Body |
||
5 | { |
||
6 | /** |
||
7 | * @var string |
||
8 | */ |
||
9 | private $content = ''; |
||
10 | |||
11 | /** |
||
12 | * @param string $content |
||
13 | */ |
||
14 | public function __construct(string $content) |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getContent(): string |
||
26 | |||
27 | /** |
||
28 | * @return bool |
||
29 | */ |
||
30 | public function isJson(): bool |
||
34 | |||
35 | } |
||
36 |