QRStringOptions.php 544 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Class QRStringOptions
  4. *
  5. * @filesource QRStringOptions.php
  6. * @created 08.12.2015
  7. * @package chillerlan\QRCode\Output
  8. * @author Smiley <smiley@chillerlan.net>
  9. * @copyright 2015 Smiley
  10. * @license MIT
  11. */
  12. namespace chillerlan\QRCode\Output;
  13. use chillerlan\QRCode\QRCode;
  14. /**
  15. *
  16. */
  17. class QRStringOptions{
  18. public $type = QRCode::OUTPUT_STRING_HTML;
  19. public $textDark = '#';
  20. public $textLight = ' ';
  21. public $textNewline = PHP_EOL;
  22. public $htmlRowTag = 'p';
  23. public $htmlOmitEndTag = true;
  24. }