smiley il y a 2 ans
Parent
commit
e128f93233
1 fichiers modifiés avec 14 ajouts et 14 suppressions
  1. 14 14
      src/QROptionsTrait.php

+ 14 - 14
src/QROptionsTrait.php

@@ -174,15 +174,27 @@ trait QROptionsTrait{
 	protected bool $drawCircularModules = false;
 	protected bool $drawCircularModules = false;
 
 
 	/**
 	/**
-	 * specifies the radius of the modules when $svgDrawCircularModules is set to true
+	 * specifies the radius of the modules when $drawCircularModules is set to true
 	 */
 	 */
 	protected float $circleRadius = 0.45;
 	protected float $circleRadius = 0.45;
 
 
 	/**
 	/**
-	 * specifies which module types to exclude when $svgDrawCircularModules is set to true
+	 * specifies which module types to exclude when $drawCircularModules is set to true
 	 */
 	 */
 	protected array $keepAsSquare = [];
 	protected array $keepAsSquare = [];
 
 
+	/**
+	 * whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.
+	 *
+	 * @see https://github.com/chillerlan/php-qrcode/issues/57
+	 */
+	protected bool $connectPaths = false;
+
+	/**
+	 * specify which paths/patterns to exclude from connecting if $connectPaths is set to true
+	 */
+	protected array $excludeFromConnect = [];
+
 	/**
 	/**
 	 * Module values map
 	 * Module values map
 	 *
 	 *
@@ -344,18 +356,6 @@ trait QROptionsTrait{
 	 */
 	 */
 	protected ?string $svgHeight = null;
 	protected ?string $svgHeight = null;
 
 
-	/**
-	 * whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.
-	 *
-	 * @see https://github.com/chillerlan/php-qrcode/issues/57
-	 */
-	protected bool $connectPaths = false;
-
-	/**
-	 * specify which paths/patterns to exclude from connecting if $svgConnectPaths is set to true
-	 */
-	protected array $excludeFromConnect = [];
-
 
 
 	/*
 	/*
 	 * QRString settings
 	 * QRString settings