Code Duplication    Length = 5-5 lines in 2 locations

src/Adapter/Qrcode/PhpQrCode.php 2 locations

@@ 3258-3262 (lines=5) @@
3255
		{
3256
			$code = new QRcode();
3257
3258
			if($this->eightbit) {
3259
				$code->encodeString8bit($intext, $this->version, $this->level);
3260
			} else {
3261
				$code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive);
3262
			}
3263
            
3264
			return $code->data;
3265
		}
@@ 3272-3276 (lines=5) @@
3269
		{
3270
			$code = new QRcode();
3271
3272
			if($this->eightbit) {
3273
				$code->encodeString8bit($intext, $this->version, $this->level);
3274
			} else {
3275
				$code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive);
3276
			}
3277
            
3278
			QRtools::markTime('after_encode');
3279