summaryrefslogtreecommitdiffstats
path: root/tests/lib/app/mock/codechecker.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/app/mock/codechecker.php')
-rw-r--r--tests/lib/app/mock/codechecker.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/lib/app/mock/codechecker.php b/tests/lib/app/mock/codechecker.php
index e67d060b1f4..b5a775cc43d 100644
--- a/tests/lib/app/mock/codechecker.php
+++ b/tests/lib/app/mock/codechecker.php
@@ -38,7 +38,12 @@ class CodeChecker extends \OC\App\CodeChecker {
];
protected $blackListedFunctions = [
- // Deprecated constants
+ // Deprecated functions
'OCP\NamespaceName\ClassName::functionName' => '8.0.0',
];
+
+ protected $blackListedMethods = [
+ // Deprecated methods
+ 'OCP\NamespaceName\ClassName::methodName' => '8.0.0',
+ ];
}