Skip to content

Commit 8dc91e1

Browse files
committed
update to rector 0.12.14
1 parent 3cd98a0 commit 8dc91e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"phpstan/phpstan": "^1.0",
7575
"phpstan/phpstan-webmozart-assert": "^1.0",
7676
"pimple/pimple": "^3.2",
77-
"rector/rector": "0.12.10",
77+
"rector/rector": "0.12.14",
7878
"symfony/dependency-injection": "^5.0"
7979
},
8080
"suggest": {

src/Handler/Logging.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ public function handleErrorException(Throwable $throwable, RequestInterface $req
292292
$collectedExceptionData[self::ERROR_MESSAGE],
293293
$extra
294294
);
295-
} catch (RuntimeException $e) {
296-
$collectedExceptionData = $this->collectErrorExceptionData($e);
295+
} catch (RuntimeException $runtimeException) {
296+
$collectedExceptionData = $this->collectErrorExceptionData($runtimeException);
297297
$extra = $this->collectErrorExceptionExtraData($collectedExceptionData, $request);
298298
unset($extra[self::SERVER_URL]);
299299
}

0 commit comments

Comments
 (0)