From f7d7c07a4dfcff64939e65511f0ecf7155df96b1 Mon Sep 17 00:00:00 2001 From: smiley Date: Wed, 27 Jul 2022 16:21:50 +0200 Subject: [PATCH] :octocat: protected -> private --- src/Decoder/DecoderResult.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Decoder/DecoderResult.php b/src/Decoder/DecoderResult.php index 0a4a669ac..444cc6912 100644 --- a/src/Decoder/DecoderResult.php +++ b/src/Decoder/DecoderResult.php @@ -30,13 +30,13 @@ use function property_exists; */ final class DecoderResult{ - protected array $rawBytes; - protected string $data; - protected Version $version; - protected EccLevel $eccLevel; - protected MaskPattern $maskPattern; - protected int $structuredAppendParity = -1; - protected int $structuredAppendSequence = -1; + private array $rawBytes; + private string $data; + private Version $version; + private EccLevel $eccLevel; + private MaskPattern $maskPattern; + private int $structuredAppendParity = -1; + private int $structuredAppendSequence = -1; /** * DecoderResult constructor.