:octocat: phan happy

This commit is contained in:
smiley
2023-04-10 01:27:42 +02:00
parent 4bdfa772d5
commit 05e99b8eb8
+2 -1
View File
@@ -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;
}