summaryrefslogtreecommitdiff
path: root/vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php')
-rw-r--r--vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php b/vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php
index 3c01f8646..3664989b8 100644
--- a/vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php
+++ b/vendor/chillerlan/php-qrcode/examples/MyCustomOutput.php
@@ -28,6 +28,8 @@ class MyCustomOutput extends QROutputAbstract{
for($col = 0; $col < $this->moduleCount; $col++){
$output .= (int)$this->matrix->check($col, $row);
}
+
+ $output .= \PHP_EOL;
}
return $output;