first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Zxing\Qrcode\Decoder;
|
||||
|
||||
class QRCodeDecoderMetaData
|
||||
{
|
||||
/** @var bool */
|
||||
private $mirrored;
|
||||
|
||||
/**
|
||||
* QRCodeDecoderMetaData constructor.
|
||||
* @param bool $mirrored
|
||||
*/
|
||||
public function __construct($mirrored)
|
||||
{
|
||||
$this->mirrored = $mirrored;
|
||||
}
|
||||
|
||||
public function isMirrored()
|
||||
{
|
||||
return $this->mirrored;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user