Skip to content

Commit

Permalink
Merge pull request #95 from ilario-pierbattista/qr-code-decoder-meta-…
Browse files Browse the repository at this point in the history
…data

Added missing class QRCodeDecoderMetaData
  • Loading branch information
khanamiryan committed Apr 20, 2021
2 parents 4676df0 + 500c515 commit 6c8c230
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions lib/Qrcode/Decoder/QRCodeDecoderMetaData.php
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit 6c8c230

Please sign in to comment.