|
21 | 21 | * applies to 2D barcode formats. For now, it contains the raw bytes obtained |
22 | 22 | * as well as a String interpretation of those bytes, if applicable. |
23 | 23 | * |
24 | | - * @property \chillerlan\QRCode\Common\BitBuffer $rawBytes |
25 | 24 | * @property string $data |
26 | | - * @property \chillerlan\QRCode\Common\Version $version |
27 | 25 | * @property \chillerlan\QRCode\Common\EccLevel $eccLevel |
| 26 | + * @property \chillerlan\QRCode\Detector\FinderPattern[] $finderPatterns |
28 | 27 | * @property \chillerlan\QRCode\Common\MaskPattern $maskPattern |
| 28 | + * @property \chillerlan\QRCode\Common\BitBuffer $rawBytes |
29 | 29 | * @property int $structuredAppendParity |
30 | 30 | * @property int $structuredAppendSequence |
31 | | - * @property \chillerlan\QRCode\Detector\FinderPattern[] $finderPatterns |
| 31 | + * @property \chillerlan\QRCode\Common\Version $version |
32 | 32 | */ |
33 | 33 | final class DecoderResult{ |
34 | 34 |
|
35 | | - private BitBuffer $rawBytes; |
36 | | - private Version $version; |
| 35 | + private string $data = ''; |
37 | 36 | private EccLevel $eccLevel; |
| 37 | + /** @var \chillerlan\QRCode\Detector\FinderPattern[] */ |
| 38 | + private array $finderPatterns = []; |
38 | 39 | private MaskPattern $maskPattern; |
39 | | - private string $data = ''; |
| 40 | + private BitBuffer $rawBytes; |
40 | 41 | private int $structuredAppendParity = -1; |
41 | 42 | private int $structuredAppendSequence = -1; |
42 | | - /** @var \chillerlan\QRCode\Detector\FinderPattern[] */ |
43 | | - private array $finderPatterns = []; |
| 43 | + private Version $version; |
44 | 44 |
|
45 | 45 | /** |
46 | 46 | * DecoderResult constructor. |
|
0 commit comments