Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Object/AbstractObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ public function getTextToDisplay()
if ($this->withChecksumInText) {
return $this->getText();
}

return $this->addLeadingZeros($this->text, true);
}

Expand Down Expand Up @@ -759,7 +759,7 @@ public function getQuietZone()
if ($this->withQuietZones || $this->mandatoryQuietZones) {
return 10 * $this->barThinWidth * $this->factor;
}

return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Object/Code39.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function getTextToDisplay()
if (substr($text, 0, 1) != '*' && substr($text, -1) != '*') {
return '*' . $text . '*';
}

return $text;
}

Expand Down

0 comments on commit 3ba9ec5

Please # to comment.