Skip to content

Commit 6c8c230

Browse files
authored
Merge pull request #95 from ilario-pierbattista/qr-code-decoder-meta-data
Added missing class QRCodeDecoderMetaData
2 parents 4676df0 + 500c515 commit 6c8c230

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)