* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Util; /** * Convert PHP errors into exceptions * * @author Artem Lopata */ class ErrorHandler { /** * Error handler * * @param int $level Level of the error raised * @param string $message Error message * @param string $file Filename that the error was raised in * @param int $line Line number the error was raised at * * @static * @throws \ErrorException */ public static function handle($level, $message, $file, $line) { // respect error_reporting being disabled if (!error_reporting()) { return; } throw new \ErrorException($message, 0, $level, $file, $line); } /** * Register error handler * * @static */ public static function register() { set_error_handler(array(__CLASS__, 'handle')); } }