Fork of FusionPBX but with LDAP kinda working
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
350 B

<?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 <greubel@nkey.de>
* @package phpQr
*/
abstract class QRErrorCorrectLevel
{
const L = 1;
const M = 0;
const Q = 3;
const H = 2;
}