Initial commit

This commit is contained in:
net909
2023-09-28 16:21:06 +08:00
parent 498772eb04
commit ba7be004c0
640 changed files with 87745 additions and 0 deletions
@@ -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;
}
}