diff options
Diffstat (limited to 'tests/data/app/code-checker/test-use.php')
-rw-r--r-- | tests/data/app/code-checker/test-use.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/data/app/code-checker/test-use.php b/tests/data/app/code-checker/test-use.php deleted file mode 100644 index 9c4824f9767..00000000000 --- a/tests/data/app/code-checker/test-use.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - -use OC_AppConfig as UseConfig; - -/** - * Class BadClass - creating an instance of a blacklisted class is not allowed - */ -class BadClass { - public function foo() { - $bar = new UseConfig(); - } -} |