From 7bf4e7f23cbb59c37b38cf11fc5737b39f37b5e0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Sep 2021 09:08:17 +0200 Subject: update to 2.15.0 keep compatibility using laminas-zendframework-bridge as this is only used using compat autolader raise dependency on zend-stdlib >= 3.6 --- 106.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 106.patch (limited to '106.patch') diff --git a/106.patch b/106.patch deleted file mode 100644 index 64601bc..0000000 --- a/106.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 5b8b5a95c7e7736ff7553caa4745248a86ef59f2 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Fri, 30 Jul 2021 13:04:28 +0200 -Subject: [PATCH] fix Regression in RoyalMail - ---- - src/Barcode/Royalmail.php | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/src/Barcode/Royalmail.php b/src/Barcode/Royalmail.php -index 211f9cbc..8d5cd5dc 100644 ---- a/src/Barcode/Royalmail.php -+++ b/src/Barcode/Royalmail.php -@@ -124,7 +124,8 @@ protected function royalmail($value) - $rowchkvalue = array_keys($this->rows, $rowvalue); - $colchkvalue = array_keys($this->columns, $colvalue); - $intersect = array_intersect($rowchkvalue, $colchkvalue); -- $chkvalue = current($intersect); -+ $chkvalue = (string)current($intersect); -+ - if ($chkvalue === $checksum) { - return true; - } -- cgit