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

Commit

Permalink
Merge branch 'hotfix/barcode-object-docblocks' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/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 efd47ef

Please sign in to comment.