Skip to content

Commit e02ce42

Browse files
Update dependency phpstan/phpstan to ^2.1.18 (#54)
* Update dependency phpstan/phpstan to ^2.1.18 | datasource | package | from | to | | ---------- | --------------- | ------ | ------ | | packagist | phpstan/phpstan | 2.1.17 | 2.1.18 | * SA fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Filippo Tessarotto <[email protected]>
1 parent ba3a1a2 commit e02ce42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"php": "~8.3.0 || ~8.4.0"
1515
},
1616
"require-dev": {
17-
"phpstan/phpstan": "^2.1.17",
17+
"phpstan/phpstan": "^2.1.18",
1818
"phpstan/phpstan-phpunit": "^2.0.6",
1919
"phpstan/phpstan-strict-rules": "^2.0.4",
2020
"phpunit/phpunit": "^12.2.7",

tests/ErrorHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function testHandleCliException(): void
113113
$this->errorHandler->exceptionHandler($this->exception);
114114

115115
\fseek($memoryStream, 0);
116-
$output = (string) \stream_get_contents($memoryStream);
116+
$output = \stream_get_contents($memoryStream);
117117
self::assertStringContainsString($this->exception->getMessage(), $output);
118118
}
119119

0 commit comments

Comments
 (0)