* @package phpQr */ abstract class QRErrorCorrectLevel { const L = 1; const M = 0; const Q = 3; const H = 2; }