You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php

25 lines
480 B

10 months ago
<?php
/**
* QRrsblock.php
*
* Created by arielferrandini
*/
namespace PHPQRCode;
class QRrsblock {
public $dataLength;
public $data = array();
public $eccLength;
public $ecc = array();
public function __construct($dl, $data, $el, &$ecc, QRrsItem $rs)
{
$rs->encode_rs_char($data, $ecc);
$this->dataLength = $dl;
$this->data = $data;
$this->eccLength = $el;
$this->ecc = $ecc;
}
11 months ago
};