1 | <?php |
||
7 | class PdfBody extends Body |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $content = ''; |
||
13 | |||
14 | /** |
||
15 | * @param string $content |
||
16 | */ |
||
17 | public function __construct($content) |
||
21 | |||
22 | /** |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function isJson(): bool |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getContent(): string |
||
37 | } |
||
38 |