Dompdf in custom files

The following code works in phpmaker 2020 but does work in phpmaker 2022. How can I make it work in phpmaker 2022?$html = “

WELCOME TO PHP Dompdf

”;use Dompdf\Dompdf;ob_get_clean(); // Clear Buffer - this is very important!!!$document = new Dompdf();
$document->loadHtml($html);
$document->setPaper(‘A4’, ‘portrait’);
$document->render();
$document->stream(“Payslips”, array(“Attachment”=>0));

Custom Files are for adding your own pages with content. If you want to add a route to output your PDF, read https://discourse.hkvstore.com/t/using-route-action-server-event-v2021/3393/1 you must use Custom File, you should put your code in Page_Load or Page_Render server event.You should also use fully qualified name for dompdf, see Using namespaces: Basics.