@@ -41,7 +41,7 @@ interface QROutputInterface{
41
41
public const CUSTOM = 'custom ' ;
42
42
43
43
/**
44
- * Map of built-in output modes => modules
44
+ * Map of built-in output modes => class FQN
45
45
*
46
46
* @var string[]
47
47
*/
@@ -59,6 +59,8 @@ interface QROutputInterface{
59
59
];
60
60
61
61
/**
62
+ * Map of module type => default value
63
+ *
62
64
* @var bool[]
63
65
*/
64
66
public const DEFAULT_MODULE_VALUES = [
@@ -78,6 +80,7 @@ interface QROutputInterface{
78
80
QRMatrix::M_DARKMODULE => true ,
79
81
QRMatrix::M_DATA_DARK => true ,
80
82
QRMatrix::M_FINDER_DARK => true ,
83
+ QRMatrix::M_SEPARATOR_DARK => true ,
81
84
QRMatrix::M_ALIGNMENT_DARK => true ,
82
85
QRMatrix::M_TIMING_DARK => true ,
83
86
QRMatrix::M_FORMAT_DARK => true ,
@@ -89,6 +92,8 @@ interface QROutputInterface{
89
92
];
90
93
91
94
/**
95
+ * Map of module type => readable name (for CSS etc.)
96
+ *
92
97
* @var string[]
93
98
*/
94
99
public const LAYERNAMES = [
@@ -108,6 +113,7 @@ interface QROutputInterface{
108
113
QRMatrix::M_DARKMODULE => 'darkmodule ' ,
109
114
QRMatrix::M_DATA_DARK => 'data-dark ' ,
110
115
QRMatrix::M_FINDER_DARK => 'finder-dark ' ,
116
+ QRMatrix::M_SEPARATOR_DARK => 'separator-dark ' ,
111
117
QRMatrix::M_ALIGNMENT_DARK => 'alignment-dark ' ,
112
118
QRMatrix::M_TIMING_DARK => 'timing-dark ' ,
113
119
QRMatrix::M_FORMAT_DARK => 'format-dark ' ,
0 commit comments