astrXbian/www/multitube/vendor/nikic/php-parser/test/PhpParser/Parser/Php5Test.php

15 lines
256 B
PHP
Raw Normal View History

2021-03-20 01:33:02 +01:00
<?php
namespace PhpParser\Parser;
use PhpParser\Lexer;
use PhpParser\ParserTest;
require_once __DIR__ . '/../ParserTest.php';
class Php5Test extends ParserTest {
protected function getParser(Lexer $lexer) {
return new Php5($lexer);
}
}