Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php')
-rw-r--r--vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php b/vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php
new file mode 100644
index 0000000..d6ab9e1
--- /dev/null
+++ b/vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php
@@ -0,0 +1,14 @@
+<?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);
+ }
+}