截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

QRCodeDecoderMetaData.php 374B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Zxing\Qrcode\Decoder;
  3. class QRCodeDecoderMetaData
  4. {
  5. /** @var bool */
  6. private $mirrored;
  7. /**
  8. * QRCodeDecoderMetaData constructor.
  9. * @param bool $mirrored
  10. */
  11. public function __construct($mirrored)
  12. {
  13. $this->mirrored = $mirrored;
  14. }
  15. public function isMirrored()
  16. {
  17. return $this->mirrored;
  18. }
  19. }