Upgrade 1-11.38

This commit is contained in:
xesmyd
2026-03-30 14:10:30 +02:00
parent f2a7e6d1fc
commit ac648ef29d
24665 changed files with 69682 additions and 2205004 deletions
@@ -17,8 +17,6 @@
namespace Zxing\Common;
use Zxing\ResultPoint;
/**
* <p>Encapsulates the result of detecting a barcode in an image. This includes the raw
* matrix of black/white pixels corresponding to the barcode, and possibly points of interest
@@ -26,22 +24,19 @@ use Zxing\ResultPoint;
*
* @author Sean Owen
*/
class DetectorResult {
class DetectorResult
{
public function __construct(private $bits, private $points)
{
}
private $bits;
private $points;
final public function getBits()
{
return $this->bits;
}
public function __construct($bits, $points) {
$this->bits = $bits;
$this->points = $points;
}
public final function getBits() {
return $this->bits;
}
public final function getPoints() {
return $this->points;
}
}
final public function getPoints()
{
return $this->points;
}
}