diff options
Diffstat (limited to 'test/scanners/php/namespaces.in.php')
-rw-r--r-- | test/scanners/php/namespaces.in.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/scanners/php/namespaces.in.php b/test/scanners/php/namespaces.in.php deleted file mode 100644 index ad6a1a1..0000000 --- a/test/scanners/php/namespaces.in.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php -namespace foo; -use blah\blah as foo; - -$a = new my\name(); // instantiates "foo\my\name" class -foo\bar::name(); // calls static method "name" in class "blah\blah\bar" -my\bar(); // calls function "foo\my\bar" -$a = my\BAR; // sets $a to the value of constant "foo\my\BAR" -?> |