Nikita Popov 0ea134a507 Add PHP 8 parser with correct concatenation precedence
The PHP 7 and PHP 8 parsers use the same grammar file and only
differ in token precedence.
2022-06-19 20:07:17 +02:00

14 lines
235 B
PHP

<?php declare(strict_types=1);
namespace PhpParser\Parser;
use PhpParser\Lexer;
use PhpParser\ParserTest;
class Php8Test extends ParserTest
{
protected function getParser(Lexer $lexer) {
return new Php8($lexer);
}
}