QROptions.php 534 B

12345678910111213141516171819202122232425262728293031323334353637
  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. * mandatory
  19. *
  20. * @var \chillerlan\QRCode\Output\QROutputInterface
  21. */
  22. public $output = null ;
  23. /**
  24. * @var int
  25. */
  26. public $errorCorrectLevel = QRConst::ERROR_CORRECT_LEVEL_M;
  27. /**
  28. * @var int
  29. */
  30. public $typeNumber = null;
  31. }