File: /home/jairicem/kunakornthairestaurant.com/vendor/laminas/laminas-barcode/src/Object/Itf14.php
<?php
/**
* @see https://github.com/laminas/laminas-barcode for the canonical source repository
* @copyright https://github.com/laminas/laminas-barcode/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-barcode/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Barcode\Object;
/**
* Class for generate Itf14 barcode
*/
class Itf14 extends Code25interleaved
{
/**
* Default options for Identcode barcode
* @return void
*/
protected function getDefaultOptions()
{
$this->barcodeLength = 14;
$this->mandatoryChecksum = true;
}
}