We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4676df0 + 500c515 commit 6c8c230Copy full SHA for 6c8c230
1 file changed
lib/Qrcode/Decoder/QRCodeDecoderMetaData.php
@@ -0,0 +1,23 @@
1
+<?php
2
+
3
+namespace Zxing\Qrcode\Decoder;
4
5
+class QRCodeDecoderMetaData
6
+{
7
+ /** @var bool */
8
+ private $mirrored;
9
10
+ /**
11
+ * QRCodeDecoderMetaData constructor.
12
+ * @param bool $mirrored
13
+ */
14
+ public function __construct($mirrored)
15
+ {
16
+ $this->mirrored = $mirrored;
17
+ }
18
19
+ public function isMirrored()
20
21
+ return $this->mirrored;
22
23
+}
0 commit comments