Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[Console] Fix errors not rethrown even if not handled by console.error listeners#22690
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
fabpot commentedMay 11, 2017
Thank you@chalasr. |
…onsole.error listeners (chalasr)This PR was merged into the 2.7 branch.Discussion----------[Console] Fix errors not rethrown even if not handled by console.error listeners| Q | A| ------------- | ---| Branch? | 2.7| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets |#22678| License | MIT| Doc PR | n/a#22261 has been squashed while revisiting error handling, this fixes it again while keeping latest changes intact.__code__```phppublic function execute(InputInterface $input, OutputInterface $output) { $this->barr();}public function bar() { }```__before____after__Commits-------75f098f Fix errors not rethrown even if not handled by console.error listeners
ciaranmcnulty commentedMay 12, 2017
Thanks@chalasr, this fixes the issue we had on PhpSpec |
FloatingMaster commentedJul 3, 2017
This pr breaks handling php \Throwable exceptions see#18484 |
chalasr commentedJul 3, 2017
I don't get what you mean. Please open a new issue, I find no comments from you in the thread which is also closed thus won't be tracked |
chalasr commentedJul 3, 2017 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
(and the linked thread is older than this PR, not related) |
#22261 has been squashed while revisiting error handling, this fixes it again while keeping latest changes intact.
code
before

after
