14 lines
235 B
PHP
Raw Normal View History

<?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);
}
}