🔥 v6.0 first pass: PHP 8.2, remove deprecated elements, add type hints

This commit is contained in:
smiley
2023-11-25 12:49:56 +01:00
parent a301af5b7f
commit 39e3dfe83b
80 changed files with 332 additions and 1029 deletions
+2 -2
View File
@@ -9,14 +9,14 @@
use chillerlan\QRCode\{QRCode, QROptions};
use chillerlan\QRCode\Data\QRMatrix;
use chillerlan\QRCode\Output\QROutputInterface;
use chillerlan\QRCode\Output\QRFpdf;
require_once __DIR__ . '/../vendor/autoload.php';
$options = new QROptions;
$options->version = 7;
$options->outputType = QROutputInterface::FPDF;
$options->outputInterface = QRFpdf::class;
$options->scale = 5;
$options->fpdfMeasureUnit = 'mm';
$options->bgColor = [222, 222, 222];