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

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Sep 14, 2012
2 parents 000123e + 860784c commit a2c3065
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions library/Zend/Barcode/Object/AbstractObject.php
Expand Up @@ -174,27 +174,27 @@ abstract class AbstractObject implements ObjectInterface

/**
* Fix barcode length (numeric or string like 'even')
* @var $barcodeLength integer | string
* @var integer | string
*/
protected $barcodeLength = null;

/**
* Activate automatic addition of leading zeros
* if barcode length is fixed
* @var $addLeadingZeros boolean
* @var boolean
*/
protected $addLeadingZeros = true;

/**
* Activation of mandatory checksum
* to deactivate unauthorized modification
* @var $mandatoryChecksum boolean
* @var boolean
*/
protected $mandatoryChecksum = false;

/**
* Character used to substitute checksum character for validation
* @var $substituteChecksumCharacter mixed
* @var mixed
*/
protected $substituteChecksumCharacter = 0;

Expand Down

0 comments on commit a2c3065

Please sign in to comment.