Skip to content

Instantly share code, notes, and snippets.

@neclimdul
Created March 31, 2015 21:26
Show Gist options
  • Save neclimdul/ab29ddb223cfc197e635 to your computer and use it in GitHub Desktop.
Save neclimdul/ab29ddb223cfc197e635 to your computer and use it in GitHub Desktop.
Trigger a fatal trying to handle a engine exception in php7
<?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