:octocat: change visibility in final classes to private

This commit is contained in:
codemasher
2021-06-05 18:19:55 +02:00
parent 33c1e2d88a
commit d1936de3ba
9 changed files with 28 additions and 25 deletions
+5 -5
View File
@@ -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.