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