:octocat: rename QRCode::getMatrix() and RecoderResult::getMatrix() to getQRMatrix()

This commit is contained in:
smiley
2023-04-04 15:45:30 +02:00
parent 2c389c7d4c
commit 9bc23a2161
7 changed files with 23 additions and 14 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ $qrcode->addByteSegment('https://github.com');
header('Content-type: image/png');
$qrOutputInterface = new QRImageWithLogo($options, $qrcode->getMatrix());
$qrOutputInterface = new QRImageWithLogo($options, $qrcode->getQRMatrix());
// dump the output, with an additional logo
// the logo could also be supplied via the options, see the svgWithLogo example