Skip to content

Commit dd6efc6

Browse files
Update rector/rector requirement from ^0.18.3 to ^0.19.0 (#95)
Co-authored-by: Sergei Predvoditelev <[email protected]>
1 parent 7dd689e commit dd6efc6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
os: >-
2121
['ubuntu-latest']
2222
php: >-
23-
['8.0']
23+
['8.3']

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"httpsoft/http-message": "^1.0.9",
4242
"maglnet/composer-require-checker": "^4.4",
4343
"phpunit/phpunit": "^9.5",
44-
"rector/rector": "^0.18.3",
44+
"rector/rector": "^0.19.0",
4545
"roave/infection-static-analysis-plugin": "^1.16",
4646
"spatie/phpunit-watcher": "^1.23",
4747
"vimeo/psalm": "^4.30|^5.6",

src/Renderer/HtmlRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public function renderPreviousExceptions(Throwable $t): string
220220
foreach ($t->getPreviousExceptions() as $exception) {
221221
$result[] = $this->renderTemplate($templatePath, ['throwable' => $exception]);
222222
}
223-
return implode($result);
223+
return implode('', $result);
224224
}
225225
if ($t->getPrevious() !== null) {
226226
return $this->renderTemplate($templatePath, ['throwable' => $t->getPrevious()]);

0 commit comments

Comments
 (0)