We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following visible test will show the faulty behavior:
$proxy = $this->getProxy('P', 'pt', 'A4'); $proxy->AddPage(); $proxy->SetFont('arial', '', 10); $proxy->Write(8, "A\n"); $proxy->Write(8, "B"); $this->assertProxySame($proxy, 0.15, 72);
The text was updated successfully, but these errors were encountered:
Also this one:
public function testWriteWithNewLines() { $proxy = $this->getProxy(); $proxy->SetFont('arial'); $proxy->AddPage(); $proxy->Write(2, 'A simple test'); $proxy->Write(2, ".\n\nBest regards,\n\nTest Team"); $this->assertProxySame($proxy, 14.64); }
Sorry, something went wrong.
70f6087
No branches or pull requests
Following visible test will show the faulty behavior:
The text was updated successfully, but these errors were encountered: