Skip to content

Commit

Permalink
Merge pull request #4011 from PHPOffice/dependabot/composer/phpstan/p…
Browse files Browse the repository at this point in the history
…hpstan-1.10.67

Bump phpstan/phpstan from 1.10.66 to 1.10.67
  • Loading branch information
oleibman committed May 1, 2024
2 parents 13fe271 + e64d99a commit 8441d3d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
14 changes: 5 additions & 9 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/PhpSpreadsheet/Reader/Slk.php
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ private function addWidth(Spreadsheet $spreadsheet, string $columnWidth, string
$endCol = Coordinate::stringFromColumnIndex((int) $endCol);
$spreadsheet->getActiveSheet()->getColumnDimension($startCol)->setWidth((float) $columnWidth);
do {
$spreadsheet->getActiveSheet()->getColumnDimension(++$startCol)->setWidth((float) $columnWidth);
$spreadsheet->getActiveSheet()->getColumnDimension((string) ++$startCol)->setWidth((float) $columnWidth);
} while ($startCol !== $endCol);
}
}
Expand Down

0 comments on commit 8441d3d

Please sign in to comment.