Vendoring deprecated composer libs
This commit is contained in:
25
libs/phpqrcode/lib/PHPQRCode/QRrsblock.php
Normal file
25
libs/phpqrcode/lib/PHPQRCode/QRrsblock.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user