requtize/eehandler

This package is abandoned and no longer maintained. No replacement package was suggested.

PHP Error and Exception Handler

0.2.0 2016-04-26 07:26 UTC

This package is auto-updated.

Last update: 2024-02-18 05:46:58 UTC


README

PHP Error and Exception Handler

// Development environment - shows all errors and debug tools
$handler = new EEHandler('dev');

// Production environment - Show only HTTP error code.
$handler = new EEHandler('prod');

// Register all handlers
$handler->register();