Skip to content

Commit cf5b1d7

Browse files
committed
* Fixed a bug, that lower case letters were impossible to use with Code 39 Extended.
1 parent 938fd4e commit cf5b1d7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Types/TypeCode39.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ public function getBarcodeData(string $code): Barcode
7070
throw new InvalidLengthException('You should provide a barcode string.');
7171
}
7272

73-
$code = strtoupper($code);
74-
7573
if ($this->extended) {
7674
// extended mode
7775
$code = $this->encode_code39_ext($code);

0 commit comments

Comments
 (0)