comparison vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.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 Php7Test extends ParserTest {
11 protected function getParser(Lexer $lexer) {
12 return new Php7($lexer);
13 }
14 }