1 | <?php |
||
17 | final class OutputEvent extends Event |
||
18 | { |
||
19 | /** |
||
20 | * @var Dompdf |
||
21 | */ |
||
22 | private $pdf; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $html; |
||
28 | |||
29 | public function __construct(Dompdf $pdf, string $html) |
||
34 | |||
35 | /** |
||
36 | * Returns the dompdf instance. |
||
37 | */ |
||
38 | public function getPdf(): Dompdf |
||
42 | |||
43 | /** |
||
44 | * Returns the html. |
||
45 | */ |
||
46 | public function getHtml(): string |
||
50 | } |
||
51 |