drupal-civicrm/vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php

15 lines
256 B
PHP
Raw Normal View History

2018-01-14 15:10:16 +02:00
<?php
namespace PhpParser\Parser;
use PhpParser\Lexer;
use PhpParser\ParserTest;
require_once __DIR__ . '/../ParserTest.php';
class Php7Test extends ParserTest {
protected function getParser(Lexer $lexer) {
return new Php7($lexer);
}
}