diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-06-21 14:13:41 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-06-21 14:13:41 -0700 |
commit | a491348d442ab8e6cd2fa403d4365cdad78e52ce (patch) | |
tree | a00f575d82afb2c9051bad95398b4250f4a3d44d /vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php | |
parent | c73ac5f1f818b6b21083f6785b4b2f6d778a6496 (diff) |
Vendoring deprecated composer libs
Diffstat (limited to 'vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php')
-rw-r--r-- | vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php b/vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php deleted file mode 100644 index c1d01f22..00000000 --- a/vendor/aferrandini/phpqrcode/lib/PHPQRCode/QRrsblock.php +++ /dev/null @@ -1,25 +0,0 @@ -<?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; - } -};
\ No newline at end of file |