芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/vendor/bacon/bacon-qr-code/src/Encoder/BlockPair.php
*/ private $dataBytes; /** * Error correction bytes in the block. * * @var SplFixedArray
*/ private $errorCorrectionBytes; /** * Creates a new block pair. * * @param SplFixedArray
$data * @param SplFixedArray
$errorCorrection */ public function __construct(SplFixedArray $data, SplFixedArray $errorCorrection) { $this->dataBytes = $data; $this->errorCorrectionBytes = $errorCorrection; } /** * Gets the data bytes. * * @return SplFixedArray
*/ public function getDataBytes() : SplFixedArray { return $this->dataBytes; } /** * Gets the error correction bytes. * * @return SplFixedArray
*/ public function getErrorCorrectionBytes() : SplFixedArray { return $this->errorCorrectionBytes; } }