1234567891011121314151617181920 |
- <?php
- /**
- * This file is part of the phpQr package
- *
- * See @see QRCode class for description of package and license.
- */
- /**
- * Error correct level enumeration
- *
- * @author Maik Greubel <[email protected]>
- * @package phpQr
- */
- abstract class QRErrorCorrectLevel
- {
- const L = 1;
- const M = 0;
- const Q = 3;
- const H = 2;
- }
|