QROptions.php 426 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Class QROptions
  4. *
  5. * @filesource QROptions.php
  6. * @created 08.12.2015
  7. * @package chillerlan\QRCode
  8. * @author Smiley <smiley@chillerlan.net>
  9. * @copyright 2015 Smiley
  10. * @license MIT
  11. */
  12. namespace chillerlan\QRCode;
  13. /**
  14. *
  15. */
  16. class QROptions{
  17. /**
  18. * @var int
  19. */
  20. public $errorCorrectLevel = QRCode::ERROR_CORRECT_LEVEL_M;
  21. /**
  22. * @var int
  23. */
  24. public $typeNumber = null;
  25. }