In version 7.3.6 of neos/flow the AbstractExceptionHandler::echoExceptionCli signature changed from
protected function echoExceptionCli(\Throwable $exception) to
protected function echoExceptionCli(\Throwable $exception, bool $exceptionWasLogged)
So this causes an error now:
PHP Fatal error: Declaration of Networkteam\SentryClient\Handler\DebugExceptionHandler::echoExceptionCLI(Throwable $exception) must be compatible with Neos\Flow\Error\AbstractExceptionHandler::echoExceptionCli(Throwable $exception, bool $exceptionWasLogged)
Temporary solution is to pin the package to 7.3.5 in composer.json.
In version 7.3.6 of neos/flow the
AbstractExceptionHandler::echoExceptionCli
signature changed fromprotected function echoExceptionCli(\Throwable $exception)
toprotected function echoExceptionCli(\Throwable $exception, bool $exceptionWasLogged)
So this causes an error now:
Temporary solution is to pin the package to 7.3.5 in composer.json.