Files
php-qrcode/src/QROptions.php
T
2015-12-09 23:41:36 +01:00

31 lines
426 B
PHP

<?php
/**
* Class QROptions
*
* @filesource QROptions.php
* @created 08.12.2015
* @package chillerlan\QRCode
* @author Smiley <smiley@chillerlan.net>
* @copyright 2015 Smiley
* @license MIT
*/
namespace chillerlan\QRCode;
/**
*
*/
class QROptions{
/**
* @var int
*/
public $errorCorrectLevel = QRCode::ERROR_CORRECT_LEVEL_M;
/**
* @var int
*/
public $typeNumber = null;
}