Skip to content

Commit

Permalink
Added missing class QRCodeDecoderMetaData
Browse files Browse the repository at this point in the history
  • Loading branch information
ilario-pierbattista committed Sep 1, 2020
1 parent 89b57f2 commit 500c515
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 500c515

Please sign in to comment.