aboutsummaryrefslogtreecommitdiffstats
path: root/tests/data/app/code-checker/test-const.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/data/app/code-checker/test-const.php')
-rw-r--r--tests/data/app/code-checker/test-const.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/data/app/code-checker/test-const.php b/tests/data/app/code-checker/test-const.php
deleted file mode 100644
index 7ea3bd6c870..00000000000
--- a/tests/data/app/code-checker/test-const.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?php
-
-/**
- * Class BadClass - accessing consts on blacklisted classes is not allowed
- */
-class BadClass {
- public function foo() {
- $bar = \OC_API::ADMIN_AUTH;
- }
-}