Mercurial > hg > isophonics-drupal-site
annotate vendor/nikic/php-parser/test/PhpParser/Parser/Php5Test.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 5fb285c0d0e3 |
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 Php5Test extends ParserTest |
Chris@13 | 9 { |
Chris@0 | 10 protected function getParser(Lexer $lexer) { |
Chris@0 | 11 return new Php5($lexer); |
Chris@0 | 12 } |
Chris@0 | 13 } |