diff options
Diffstat (limited to 'tests/data/app/code-checker/test-static-call.php')
-rw-r--r-- | tests/data/app/code-checker/test-static-call.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/data/app/code-checker/test-static-call.php b/tests/data/app/code-checker/test-static-call.php deleted file mode 100644 index 4afe0b1174d..00000000000 --- a/tests/data/app/code-checker/test-static-call.php +++ /dev/null @@ -1,10 +0,0 @@ -<?php - -/** - * Class BadClass - calling static methods on blacklisted classes is not allowed - */ -class BadClass { - public function foo() { - OC_App::isEnabled('bar'); - } -} |