Mercurial > hg > isophonics-drupal-site
annotate vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
rev | line source |
---|---|
Chris@13 | 1 <?php declare(strict_types=1); |
Chris@0 | 2 |
Chris@0 | 3 namespace PhpParser\Parser; |
Chris@0 | 4 |
Chris@0 | 5 use PhpParser\Lexer; |
Chris@0 | 6 use PhpParser\ParserTest; |
Chris@0 | 7 |
Chris@13 | 8 class Php7Test extends ParserTest |
Chris@13 | 9 { |
Chris@0 | 10 protected function getParser(Lexer $lexer) { |
Chris@0 | 11 return new Php7($lexer); |
Chris@0 | 12 } |
Chris@0 | 13 } |