fix:更新已知bug,优化代码
This commit is contained in:
63
vendor/endroid/qr-code/src/Builder/BuilderInterface.php
vendored
Normal file
63
vendor/endroid/qr-code/src/Builder/BuilderInterface.php
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Endroid\QrCode\Builder;
|
||||
|
||||
use Endroid\QrCode\Color\ColorInterface;
|
||||
use Endroid\QrCode\Encoding\EncodingInterface;
|
||||
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelInterface;
|
||||
use Endroid\QrCode\Label\Alignment\LabelAlignmentInterface;
|
||||
use Endroid\QrCode\Label\Font\FontInterface;
|
||||
use Endroid\QrCode\Label\Margin\MarginInterface;
|
||||
use Endroid\QrCode\RoundBlockSizeMode\RoundBlockSizeModeInterface;
|
||||
use Endroid\QrCode\Writer\Result\ResultInterface;
|
||||
use Endroid\QrCode\Writer\WriterInterface;
|
||||
|
||||
interface BuilderInterface
|
||||
{
|
||||
public static function create(): BuilderInterface;
|
||||
|
||||
public function writer(WriterInterface $writer): BuilderInterface;
|
||||
|
||||
/** @param array<mixed> $writerOptions */
|
||||
public function writerOptions(array $writerOptions): BuilderInterface;
|
||||
|
||||
public function data(string $data): BuilderInterface;
|
||||
|
||||
public function encoding(EncodingInterface $encoding): BuilderInterface;
|
||||
|
||||
public function errorCorrectionLevel(ErrorCorrectionLevelInterface $errorCorrectionLevel): BuilderInterface;
|
||||
|
||||
public function size(int $size): BuilderInterface;
|
||||
|
||||
public function margin(int $margin): BuilderInterface;
|
||||
|
||||
public function roundBlockSizeMode(RoundBlockSizeModeInterface $roundBlockSizeMode): BuilderInterface;
|
||||
|
||||
public function foregroundColor(ColorInterface $foregroundColor): BuilderInterface;
|
||||
|
||||
public function backgroundColor(ColorInterface $backgroundColor): BuilderInterface;
|
||||
|
||||
public function logoPath(string $logoPath): BuilderInterface;
|
||||
|
||||
public function logoResizeToWidth(int $logoResizeToWidth): BuilderInterface;
|
||||
|
||||
public function logoResizeToHeight(int $logoResizeToHeight): BuilderInterface;
|
||||
|
||||
public function logoPunchoutBackground(bool $logoPunchoutBackground): BuilderInterface;
|
||||
|
||||
public function labelText(string $labelText): BuilderInterface;
|
||||
|
||||
public function labelFont(FontInterface $labelFont): BuilderInterface;
|
||||
|
||||
public function labelAlignment(LabelAlignmentInterface $labelAlignment): BuilderInterface;
|
||||
|
||||
public function labelMargin(MarginInterface $labelMargin): BuilderInterface;
|
||||
|
||||
public function labelTextColor(ColorInterface $labelTextColor): BuilderInterface;
|
||||
|
||||
public function validateResult(bool $validateResult): BuilderInterface;
|
||||
|
||||
public function build(): ResultInterface;
|
||||
}
|
||||
Reference in New Issue
Block a user