comparison vendor/nikic/php-parser/test/PhpParser/Parser/Php5Test.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 5fb285c0d0e3
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
1 <?php
2
3 namespace PhpParser\Parser;
4
5 use PhpParser\Lexer;
6 use PhpParser\ParserTest;
7
8 require_once __DIR__ . '/../ParserTest.php';
9
10 class Php5Test extends ParserTest {
11 protected function getParser(Lexer $lexer) {
12 return new Php5($lexer);
13 }
14 }