Skip to content

Commit 63c94e3

Browse files
committed
fixing notices errors
1 parent e2c3dd4 commit 63c94e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PhpSigep/Pdf/Script/BarCode128.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ class BarCode128
1515
// Set C du jeu des caract�res �ligibles
1616
private $Cset = "";
1717
// Convertisseur source des jeux vers le tableau
18-
private $SetFrom;
18+
private $SetFrom = array("A" => "", "B" => "");
1919
// Convertisseur destination des jeux vers le tableau
20-
private $SetTo;
20+
private $SetTo = array("A" => "", "B" => "");
2121
// Caract�res de s�lection de jeu au d�but du C128
2222
private $JStart = array("A" => 103, "B" => 104, "C" => 105);
2323
// Caract�res de changement de jeu
@@ -241,4 +241,4 @@ public function draw(\PhpSigep\Pdf\ImprovedFPDF $pdf, $x, $y, $code, $w, $h)
241241
}
242242
}
243243
}
244-
}
244+
}

0 commit comments

Comments
 (0)