Skip to content

Commit

Permalink
Merge pull request #20 from netlogix/bugfix/abstractexceptionhandler-…
Browse files Browse the repository at this point in the history
…new-param

BUGFIX: Fix compatibility with Neos 7.3.6+ / 8.0.4+
  • Loading branch information
paxuclus authored Jun 5, 2022
2 parents 5aa3090 + 2745ec2 commit 260e50f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected function echoExceptionWeb($exception)
self::throwWhenUsed();
}

protected function echoExceptionCli(Throwable $exception)
protected function echoExceptionCli(Throwable $exception, bool $exceptionWasLogged)
{
self::throwWhenUsed();
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Currently the following Flow versions are supported:

* `^5.3`
* `^6.3`
* `^7.0`
* `^7.3`
* `^8.0`

## Setup
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"neos/flow": "^5.3 || ^6.3 || ^7.0 || ^8.0",
"neos/flow": "^5.3 || ^6.3 || ^7.3.6 || ^8.0.4",
"sentry/sdk": "^3.1"
},
"autoload": {
Expand Down

0 comments on commit 260e50f

Please sign in to comment.