diff --git a/examples/image.php b/examples/image.php index 2f6108b86..54426c68a 100644 --- a/examples/image.php +++ b/examples/image.php @@ -48,7 +48,7 @@ $options = new QROptions([ 8 => [255, 255, 255], // quietzone 18 => [255, 255, 255], - // logo + // logo (requires a call to QRMatrix::setLogoSpace()) 20 => [255, 255, 255], ], ]); diff --git a/src/Data/QRMatrix.php b/src/Data/QRMatrix.php index 890fc231a..47e280ff4 100755 --- a/src/Data/QRMatrix.php +++ b/src/Data/QRMatrix.php @@ -574,6 +574,8 @@ final class QRMatrix{ * Clears a space of $width * $height in order to add a logo or text. ECC level "H" (30%) is required. * This method should be called from within an output module (after the matrix has been filled with data). * + * @codeCoverageIgnore (for now) + * * @throws \chillerlan\QRCode\Data\QRCodeDataException */ public function setLogoSpace(int $width, int $height):QRMatrix{