Install composer phpunit v9 for development testing

This commit is contained in:
2022-06-08 06:34:47 +09:00
parent 5b99da616b
commit b1079e1d24
1336 changed files with 139550 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
<?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);
}