summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-07-18 12:03:51 +0200
committerMorris Jobke <hey@morrisjobke.de>2019-07-22 12:06:16 +0200
commit54bcd86db7d35acbec2fc4a6f87cfdbceb59e539 (patch)
treefc7ac537c04447559f4a6f8e251d59212bc3945a
parent605d0874a4e38772b005beef4a945c3d9610e2bb (diff)
downloadnextcloud-server-54bcd86db7d35acbec2fc4a6f87cfdbceb59e539.tar.gz
nextcloud-server-54bcd86db7d35acbec2fc4a6f87cfdbceb59e539.zip
Adjust deprecation tests
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--lib/private/App/CodeChecker/DeprecationCheck.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/private/App/CodeChecker/DeprecationCheck.php b/lib/private/App/CodeChecker/DeprecationCheck.php
index 518ab1ec380..e672038f347 100644
--- a/lib/private/App/CodeChecker/DeprecationCheck.php
+++ b/lib/private/App/CodeChecker/DeprecationCheck.php
@@ -38,6 +38,7 @@ class DeprecationCheck extends AbstractCheck {
return [
'OC_JSON' => '8.2.0',
+ 'OCP\API' => '9.1.0',
'OCP\Contacts' => '8.1.0',
'OCP\DB' => '8.1.0',
'OCP\JSON' => '8.1.0',
@@ -55,6 +56,15 @@ class DeprecationCheck extends AbstractCheck {
*/
protected function getLocalConstants() {
return [
+ 'OCP\API::GUEST_AUTH' => '9.1.0',
+ 'OCP\API::USER_AUTH' => '9.1.0',
+ 'OCP\API::SUBADMIN_AUTH' => '9.1.0',
+ 'OCP\API::ADMIN_AUTH' => '9.1.0',
+ 'OCP\API::RESPOND_UNAUTHORISED' => '9.1.0',
+ 'OCP\API::RESPOND_SERVER_ERROR' => '9.1.0',
+ 'OCP\API::RESPOND_NOT_FOUND' => '9.1.0',
+ 'OCP\API::RESPOND_UNKNOWN_ERROR' => '9.1.0',
+
'OC_API::GUEST_AUTH' => '8.2.0',
'OC_API::USER_AUTH' => '8.2.0',
'OC_API::SUBADMIN_AUTH' => '8.2.0',