qdo executo meu código abaixo, ele não quebra a linha, já tentei mudar de left pra justify e nao quebra
no meu servidor antigo funciona, mas qdo migrei pra uma versao nova do php, acontece isso, olha a imagem...

$helperPDF = new Application_View_Helper_GeradorPDF();
$atestadoPDF = $helperPDF->genPDF("modelo.pdf");
$page = $helperPDF->headerPDF($atestadoPDF->pages[0], "DECLARAÇÃO");
$page = $helperPDF->textPDF($page, $texto1, 'left');
$page = $helperPDF->spacePDF($page);
$page = $helperPDF->textPDF($page, $texto2, 'left');
$page = $helperPDF->doubleSpacePDF($page);
$page = $helperPDF->textPDF($page, $texto4, 'right');
$atestadoPDF->pages[0] = ($page);
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$this->getResponse()->setHeader('Content-type', 'application/x-pdf', true);
$this->getResponse()->setHeader('Content-disposition', 'inline; filename=atestado.pdf', true);
$this->getResponse()->setBody($atestadoPDF->render());