| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/itms.arukustech.com/vendor/endroid/qr-code/src/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Endroid\QrCode;
use Endroid\QrCode\Color\Color;
use Endroid\QrCode\Color\ColorInterface;
use Endroid\QrCode\Encoding\Encoding;
use Endroid\QrCode\Encoding\EncodingInterface;
final readonly class QrCode implements QrCodeInterface
{
public function __construct(
private string $data,
private EncodingInterface $encoding = new Encoding('UTF-8'),
private ErrorCorrectionLevel $errorCorrectionLevel = ErrorCorrectionLevel::Low,
private int $size = 300,
private int $margin = 10,
private RoundBlockSizeMode $roundBlockSizeMode = RoundBlockSizeMode::Margin,
private ColorInterface $foregroundColor = new Color(0, 0, 0),
private ColorInterface $backgroundColor = new Color(255, 255, 255),
) {
}
public function getData(): string
{
return $this->data;
}
public function getEncoding(): EncodingInterface
{
return $this->encoding;
}
public function getErrorCorrectionLevel(): ErrorCorrectionLevel
{
return $this->errorCorrectionLevel;
}
public function getSize(): int
{
return $this->size;
}
public function getMargin(): int
{
return $this->margin;
}
public function getRoundBlockSizeMode(): RoundBlockSizeMode
{
return $this->roundBlockSizeMode;
}
public function getForegroundColor(): ColorInterface
{
return $this->foregroundColor;
}
public function getBackgroundColor(): ColorInterface
{
return $this->backgroundColor;
}
}