:octocat: forgot about these... 💄

This commit is contained in:
codemasher
2018-10-01 13:36:56 +02:00
parent 5e316540a1
commit cdde12f89c
4 changed files with 15 additions and 15 deletions
+11
View File
@@ -17,6 +17,17 @@ namespace chillerlan\QRCode\Data;
*/
interface QRDataInterface{
const NUMBER_CHAR_MAP = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
const ALPHANUM_CHAR_MAP = [
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F',
'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
'W', 'X', 'Y', 'Z', ' ', '$', '%', '*',
'+', '-', '.', '/', ':',
];
/**
* @link http://www.qrcode.com/en/about/version.html
*/