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/code/parser/stmt/class/final.test')
-rw-r--r--vendor/nikic/php-parser/test/code/parser/stmt/class/final.test17
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/test/code/parser/stmt/class/final.test b/vendor/nikic/php-parser/test/code/parser/stmt/class/final.test
new file mode 100644
index 0000000..86cc458
--- /dev/null
+++ b/vendor/nikic/php-parser/test/code/parser/stmt/class/final.test
@@ -0,0 +1,17 @@
+Final class
+-----
+<?php
+
+final class A {}
+-----
+array(
+ 0: Stmt_Class(
+ flags: MODIFIER_FINAL (32)
+ name: A
+ extends: null
+ implements: array(
+ )
+ stmts: array(
+ )
+ )
+) \ No newline at end of file