1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00

Update composer

This commit is contained in:
DanieL 2023-02-17 11:42:45 -03:00
parent f0314f6e4e
commit a6ee5ff144
1265 changed files with 321871 additions and 1038 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);
}