Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Php7Test.php 235B

12345678910111213
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Parser;
  3. use PhpParser\Lexer;
  4. use PhpParser\ParserTest;
  5. class Php7Test extends ParserTest
  6. {
  7. protected function getParser(Lexer $lexer) {
  8. return new Php7($lexer);
  9. }
  10. }