File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -174,15 +174,27 @@ trait QROptionsTrait{
174
174
protected bool $ drawCircularModules = false ;
175
175
176
176
/**
177
- * specifies the radius of the modules when $svgDrawCircularModules is set to true
177
+ * specifies the radius of the modules when $drawCircularModules is set to true
178
178
*/
179
179
protected float $ circleRadius = 0.45 ;
180
180
181
181
/**
182
- * specifies which module types to exclude when $svgDrawCircularModules is set to true
182
+ * specifies which module types to exclude when $drawCircularModules is set to true
183
183
*/
184
184
protected array $ keepAsSquare = [];
185
185
186
+ /**
187
+ * whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.
188
+ *
189
+ * @see https://github.com/chillerlan/php-qrcode/issues/57
190
+ */
191
+ protected bool $ connectPaths = false ;
192
+
193
+ /**
194
+ * specify which paths/patterns to exclude from connecting if $connectPaths is set to true
195
+ */
196
+ protected array $ excludeFromConnect = [];
197
+
186
198
/**
187
199
* Module values map
188
200
*
@@ -344,18 +356,6 @@ trait QROptionsTrait{
344
356
*/
345
357
protected ?string $ svgHeight = null ;
346
358
347
- /**
348
- * whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.
349
- *
350
- * @see https://github.com/chillerlan/php-qrcode/issues/57
351
- */
352
- protected bool $ connectPaths = false ;
353
-
354
- /**
355
- * specify which paths/patterns to exclude from connecting if $svgConnectPaths is set to true
356
- */
357
- protected array $ excludeFromConnect = [];
358
-
359
359
360
360
/*
361
361
* QRString settings
You can’t perform that action at this time.
0 commit comments