24 lines
374 B
PHP
24 lines
374 B
PHP
<?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;
|
|
}
|
|
}
|