mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 23:27:17 +02:00
PHPStan: Fix level 1 errors
This commit is contained in:
@@ -1050,8 +1050,10 @@ function lzw_decompress($binary) {
|
||||
}
|
||||
}
|
||||
// decompression
|
||||
/** @var list<?string> */
|
||||
$dictionary = range("\0", "\xFF");
|
||||
$return = "";
|
||||
$word = "";
|
||||
foreach ($codes as $i => $code) {
|
||||
$element = $dictionary[$code];
|
||||
if (!isset($element)) {
|
||||
|
Reference in New Issue
Block a user