From 05e99b8eb8f0da0e0b2b19631da792b530f13ed8 Mon Sep 17 00:00:00 2001 From: smiley Date: Mon, 10 Apr 2023 01:27:42 +0200 Subject: [PATCH] :octocat: phan happy --- src/Decoder/BitMatrix.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Decoder/BitMatrix.php b/src/Decoder/BitMatrix.php index 3c78335c6..9e5d58fe4 100644 --- a/src/Decoder/BitMatrix.php +++ b/src/Decoder/BitMatrix.php @@ -97,7 +97,8 @@ final class BitMatrix extends QRMatrix{ // mirror vertically $matrix = array_reverse($this->matrix); // rotate by 90 degrees clockwise - $this->matrix = array_map(fn(...$a) => array_reverse($a), ...$matrix); + /** @phan-suppress-next-line PhanParamTooFewInternalUnpack */ + $this->matrix = array_map(fn(...$a):array => array_reverse($a), ...$matrix); return $this; }