2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser;
|
|
|
|
|
2018-01-10 17:24:26 +01:00
|
|
|
interface Parser
|
|
|
|
{
|
2015-06-20 11:47:25 +02:00
|
|
|
/**
|
|
|
|
* Parses PHP code into a node tree.
|
|
|
|
*
|
|
|
|
* @param string $code The source code to parse
|
2016-10-09 13:15:24 +02:00
|
|
|
* @param ErrorHandler|null $errorHandler Error handler to use for lexer/parser errors, defaults
|
|
|
|
* to ErrorHandler\Throwing.
|
2015-06-20 11:47:25 +02:00
|
|
|
*
|
2017-01-19 22:46:28 +01:00
|
|
|
* @return Node\Stmt[]|null Array of statements (or null non-throwing error handler is used and
|
|
|
|
* the parser was unable to recover from an error).
|
2015-06-20 11:47:25 +02:00
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function parse(string $code, ErrorHandler $errorHandler = null);
|
2015-06-20 11:47:25 +02:00
|
|
|
}
|