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/lib/PhpParser/Builder.php')
-rw-r--r--vendor/nikic/php-parser/lib/PhpParser/Builder.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/lib/PhpParser/Builder.php b/vendor/nikic/php-parser/lib/PhpParser/Builder.php
new file mode 100644
index 0000000..95655e8
--- /dev/null
+++ b/vendor/nikic/php-parser/lib/PhpParser/Builder.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace PhpParser;
+
+interface Builder
+{
+ /**
+ * Returns the built node.
+ *
+ * @return Node The built node
+ */
+ public function getNode();
+} \ No newline at end of file