20 lines
264 B
PHP
20 lines
264 B
PHP
|
<?php
|
||
|
|
||
|
namespace Zxing\Qrcode\Decoder;
|
||
|
|
||
|
class QRCodeDecoderMetaData
|
||
|
{
|
||
|
/**
|
||
|
* QRCodeDecoderMetaData constructor.
|
||
|
* @param bool $mirrored
|
||
|
*/
|
||
|
public function __construct(private $mirrored)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function isMirrored()
|
||
|
{
|
||
|
return $this->mirrored;
|
||
|
}
|
||
|
}
|