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