>> some non-fatals were converted (TypeException) > > > There was no equivalent to TypeException in previous versions of PHP, so in > what sense has it been "converted"? Maybe I'm being thick and there's a > situation that has been, but the only type-related error I know of was > type-hinting classes, which were fatal.
When an argument was provided that did not fulfill the parameter's type requirement an E_RECOVERABLE was emitted. This meant that the error handler was triggered. Now it will not be triggered, nor will it get caught by `catch (Exception)`. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php