Skip to content

Commit

Permalink
ISSUE nfephp-org#527 ajustes para suportar erro PHP8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robmachado committed Apr 8, 2022
1 parent c55b9cb commit 0d3bcca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Legacy/Pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class Pdf extends Fpdf
private $aSet=""; // grupo A do conjunto de de caracteres legiveis
private $bSet=""; // grupo B do conjunto de caracteres legiveis
private $cSet=""; // grupo C do conjunto de caracteres legiveis
private $setFrom; // converter de
private $setTo; // converter para
private $jStart = ["A"=>103, "B"=>104, "C"=>105]; // Caracteres de seleção do grupo 128
private $jSwap = ["A"=>101, "B"=>100, "C"=>99]; // Caracteres de troca de grupo
private $setFrom = ["A" => 0, "B" => 0, "C" => 0]; // converter de
private $setTo = ["A" => 0, "B" => 0, "C" => 0]; // converter para
private $jStart = ["A"=> 103, "B"=> 104, "C" => 105]; // Caracteres de seleção do grupo 128
private $jSwap = ["A" => 101, "B" => 100, "C" => 99]; // Caracteres de troca de grupo

public function __construct($orientation = 'P', $unit = 'mm', $format = 'A4')
{
Expand Down

0 comments on commit 0d3bcca

Please sign in to comment.