* @copyright 2015 Smiley * @license MIT */ namespace chillerlan\QRCode; /** * */ class QROptions{ /** * mandatory * * @var \chillerlan\QRCode\Output\QROutputInterface */ public $output = null ; /** * @var int */ public $errorCorrectLevel = QRConst::ERROR_CORRECT_LEVEL_M; /** * @var int */ public $typeNumber = null; }