* @copyright 2015 Smiley * @license MIT */ namespace chillerlan\QRCode\Output; use chillerlan\QRCode\QRCode; /** * */ class QRStringOptions{ public $type = QRCode::OUTPUT_STRING_HTML; public $textDark = '#'; public $textLight = ' '; public $textNewline = PHP_EOL; public $htmlRowTag = 'p'; public $htmlOmitEndTag = true; }