mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 12:24:39 +01:00
f99a96e0a2
Add ErrorHandler interface, as well as ErrorHandler\Throwing and ErrorHandler\Collecting. The error handler is passed to Parser::parse(). This supersedes the throwOnError option. NameResolver now accepts an ErrorHandler in the ctor.
18 lines
336 B
PHP
18 lines
336 B
PHP
<?php
|
|
|
|
namespace PhpParser\ErrorHandler;
|
|
|
|
use PhpParser\Error;
|
|
use PhpParser\ErrorHandler;
|
|
|
|
/**
|
|
* Error handler that handles all errors by throwing them.
|
|
*
|
|
* This is the default strategy used by all components.
|
|
*/
|
|
class Throwing implements ErrorHandler
|
|
{
|
|
public function handleError(Error $error) {
|
|
throw $error;
|
|
}
|
|
} |