mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-09-05 23:18:20 +00:00
:octocat:
This commit is contained in:
+14
-14
@@ -174,15 +174,27 @@ trait QROptionsTrait{
|
||||
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;
|
||||
|
||||
/**
|
||||
* 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 = [];
|
||||
|
||||
/**
|
||||
* 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
|
||||
*
|
||||
@@ -344,18 +356,6 @@ trait QROptionsTrait{
|
||||
*/
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user