Skip to content

Commit 05e99b8

Browse files
committed
:octocat: phan happy
1 parent 4bdfa77 commit 05e99b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Decoder/BitMatrix.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ public function mirrorDiagonal():self{
9797
// mirror vertically
9898
$matrix = array_reverse($this->matrix);
9999
// rotate by 90 degrees clockwise
100-
$this->matrix = array_map(fn(...$a) => array_reverse($a), ...$matrix);
100+
/** @phan-suppress-next-line PhanParamTooFewInternalUnpack */
101+
$this->matrix = array_map(fn(...$a):array => array_reverse($a), ...$matrix);
101102

102103
return $this;
103104
}

0 commit comments

Comments
 (0)