Current path: home/webdevt/prestashop17/vendor/nikic/php-parser/lib/PhpParser/
?? Go up: /home/webdevt/prestashop17/vendor/nikic/php-parser/lib
<?php declare(strict_types=1);
namespace PhpParser;
interface ErrorHandler
{
/**
* Handle an error generated during lexing, parsing or some other operation.
*
* @param Error $error The error that needs to be handled
*/
public function handleError(Error $error);
}