mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-28 11:07:25 +00:00
:octocat: change visibility in final classes to private
This commit is contained in:
@@ -55,29 +55,29 @@ final class QRMatrix{
|
||||
/**
|
||||
* the used mask pattern, set via QRMatrix::mask()
|
||||
*/
|
||||
protected ?MaskPattern $maskPattern = null;
|
||||
private ?MaskPattern $maskPattern = null;
|
||||
|
||||
/**
|
||||
* the size (side length) of the matrix, including quiet zone (if created)
|
||||
*/
|
||||
protected int $moduleCount;
|
||||
private int $moduleCount;
|
||||
|
||||
/**
|
||||
* the actual matrix data array
|
||||
*
|
||||
* @var int[][]
|
||||
*/
|
||||
protected array $matrix;
|
||||
private array $matrix;
|
||||
|
||||
/**
|
||||
* the current ECC level
|
||||
*/
|
||||
protected EccLevel $eccLevel;
|
||||
private EccLevel $eccLevel;
|
||||
|
||||
/**
|
||||
* a Version instance
|
||||
*/
|
||||
protected Version $version;
|
||||
private Version $version;
|
||||
|
||||
/**
|
||||
* QRMatrix constructor.
|
||||
|
||||
Reference in New Issue
Block a user