Created
March 31, 2015 21:26
-
-
Save neclimdul/ab29ddb223cfc197e635 to your computer and use it in GitHub Desktop.
Trigger a fatal trying to handle a engine exception in php7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_exception_handler('_default_exception_handler'); | |
function _default_exception_handler(\Exception $e) { | |
} | |
foobar(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment