mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-23 16:51:44 +00:00
31 lines
426 B
PHP
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;
|
|
|
|
}
|