diff options
Diffstat (limited to 'test/typo.php')
-rw-r--r-- | test/typo.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/typo.php b/test/typo.php new file mode 100644 index 000000000..c8b94be21 --- /dev/null +++ b/test/typo.php @@ -0,0 +1,13 @@ +<?php + include 'boot.php'; + + $a = new App(); + + $files = glob('mod/*.php'); + foreach($files as $file) + include_once($file); + + + $files = glob('include/*.php'); + foreach($files as $file) + include_once($file); |