QRErrorCorrectLevel.php 350 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * This file is part of the phpQr package
  4. *
  5. * See @see QRCode class for description of package and license.
  6. */
  7. /**
  8. * Error correct level enumeration
  9. *
  10. * @author Maik Greubel <[email protected]>
  11. * @package phpQr
  12. */
  13. abstract class QRErrorCorrectLevel
  14. {
  15. const L = 1;
  16. const M = 0;
  17. const Q = 3;
  18. const H = 2;
  19. }