We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
__isset
Version: 2.5.0
Bluescreen cannot render when magic __isset on rendered exception throws another exception.
The problematic code is:
if (!empty($ex->tracyAction['link']) && !empty($ex->tracyAction['label'])) { $actions[] = $ex->tracyAction; }
Try to render this exception:
class FooException extends Exception { public function __isset($name) { throw new Exception('Isset is disabled'); } }
There should be an interface to detect exceptions with actions.
The text was updated successfully, but these errors were encountered:
be9d8c6
BlueScreen: empty($ex->tracyAction) may throw exception [Closes #305]
88131be
4cce9aa
0d90117
No branches or pull requests
Version: 2.5.0
Bug Description
Bluescreen cannot render when magic
__isset
on rendered exception throws another exception.The problematic code is:
Steps To Reproduce
Try to render this exception:
Possible Solution
There should be an interface to detect exceptions with actions.
The text was updated successfully, but these errors were encountered: