We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bdfa77 commit 05e99b8Copy full SHA for 05e99b8
src/Decoder/BitMatrix.php
@@ -97,7 +97,8 @@ public function mirrorDiagonal():self{
97
// mirror vertically
98
$matrix = array_reverse($this->matrix);
99
// rotate by 90 degrees clockwise
100
- $this->matrix = array_map(fn(...$a) => array_reverse($a), ...$matrix);
+ /** @phan-suppress-next-line PhanParamTooFewInternalUnpack */
101
+ $this->matrix = array_map(fn(...$a):array => array_reverse($a), ...$matrix);
102
103
return $this;
104
}
0 commit comments