v1.0 Initial commit of project
This commit is contained in:
19
vendor/khanamiryan/qrcode-detector-decoder/lib/Qrcode/Decoder/QRCodeDecoderMetaData.php
vendored
Normal file
19
vendor/khanamiryan/qrcode-detector-decoder/lib/Qrcode/Decoder/QRCodeDecoderMetaData.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Zxing\Qrcode\Decoder;
|
||||
|
||||
class QRCodeDecoderMetaData
|
||||
{
|
||||
/**
|
||||
* QRCodeDecoderMetaData constructor.
|
||||
* @param bool $mirrored
|
||||
*/
|
||||
public function __construct(private $mirrored)
|
||||
{
|
||||
}
|
||||
|
||||
public function isMirrored()
|
||||
{
|
||||
return $this->mirrored;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user