Skip to content

Commit c17dd46

Browse files
Bump phpstan/phpstan from 2.1.12 to 2.1.13 in the development-dependencies group (#32)
* Bump phpstan/phpstan in the development-dependencies group Bumps the development-dependencies group with 1 update: [phpstan/phpstan](https://github.com/phpstan/phpstan). Updates `phpstan/phpstan` from 2.1.12 to 2.1.13 - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/2.1.x/CHANGELOG.md) - [Commits](phpstan/phpstan@2.1.12...2.1.13) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.1.13 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Fix PHPStan --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexandre Alapetite <[email protected]>
1 parent bcf20f3 commit c17dd46

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/test.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@
2121

2222
date_default_timezone_set('UTC');
2323
assert($xlsxFastEditor->getWorkbookDateSystem() === 1900);
24+
// @phpstan-ignore staticMethod.internal
2425
assert(XlsxFastEditor::excelDateToDateTime(0.5, 1900)->format('c') === '1900-01-01T12:00:00+00:00');
26+
// @phpstan-ignore staticMethod.internal
2527
assert(XlsxFastEditor::excelDateToDateTime(32, 1900)->format('c') === '1900-02-01T00:00:00+00:00');
28+
// @phpstan-ignore staticMethod.internal
2629
assert(XlsxFastEditor::excelDateToDateTime(44865, 1904)->format('c') === '2026-11-01T00:00:00+00:00');
2730

2831
$sheet1 = $xlsxFastEditor->getWorksheetNumber('Sheet1');
@@ -82,6 +85,7 @@
8285
}
8386
assert($ex instanceof \InvalidArgumentException);
8487

88+
// @phpstan-ignore method.internal
8589
$cellD4 = $row4->getCell('D4');
8690
assert($cellD4 !== null);
8791
assert($cellD4->getPreviousCell()?->getNextCell()?->name() === 'D4');

0 commit comments

Comments
 (0)