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{
174174 protected bool $ drawCircularModules = false ;
175175
176176 /**
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
178178 */
179179 protected float $ circleRadius = 0.45 ;
180180
181181 /**
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
183183 */
184184 protected array $ keepAsSquare = [];
185185
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+
186198 /**
187199 * Module values map
188200 *
@@ -344,18 +356,6 @@ trait QROptionsTrait{
344356 */
345357 protected ?string $ svgHeight = null ;
346358
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-
359359
360360 /*
361361 * QRString settings
You can’t perform that action at this time.
0 commit comments