├── LICENSE ├── README.md ├── composer.json └── src ├── ErrorException.php ├── ErrorHandled.php ├── ErrorHandler.php └── Exceptions └── WrongErrorLevelException.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/composer.json -------------------------------------------------------------------------------- /src/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/src/ErrorException.php -------------------------------------------------------------------------------- /src/ErrorHandled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/src/ErrorHandled.php -------------------------------------------------------------------------------- /src/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/src/ErrorHandler.php -------------------------------------------------------------------------------- /src/Exceptions/WrongErrorLevelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josantonius/php-error-handler/HEAD/src/Exceptions/WrongErrorLevelException.php --------------------------------------------------------------------------------