summaryrefslogtreecommitdiffstats
path: root/lib/private/App/CodeChecker/DeprecationCheck.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/App/CodeChecker/DeprecationCheck.php')
-rw-r--r--lib/private/App/CodeChecker/DeprecationCheck.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/private/App/CodeChecker/DeprecationCheck.php b/lib/private/App/CodeChecker/DeprecationCheck.php
index c337e71f27e..518ab1ec380 100644
--- a/lib/private/App/CodeChecker/DeprecationCheck.php
+++ b/lib/private/App/CodeChecker/DeprecationCheck.php
@@ -40,13 +40,13 @@ class DeprecationCheck extends AbstractCheck {
'OCP\Contacts' => '8.1.0',
'OCP\DB' => '8.1.0',
- 'OCP\IHelper' => '8.1.0',
'OCP\JSON' => '8.1.0',
'OCP\Response' => '8.1.0',
'OCP\AppFramework\IApi' => '8.0.0',
'OCP\User' => '13.0.0',
'OCP\BackgroundJob' => '14.0.0',
'OCP\App' => '14.0.0',
+ 'OCP\Files' => '14.0.0',
];
}
@@ -146,6 +146,8 @@ class DeprecationCheck extends AbstractCheck {
'OCP\IServerContainer::getDb' => '8.1.0',
'OCP\IServerContainer::getHTTPHelper' => '8.1.0',
+ 'OCP\Response::disableCaching' => '14.0.0',
+
'OCP\User::getUser' => '8.0.0',
'OCP\User::getUsers' => '8.1.0',
'OCP\User::getDisplayName' => '8.1.0',
@@ -173,6 +175,13 @@ class DeprecationCheck extends AbstractCheck {
'OCP\Util::mb_substr_replace' => '8.2.0',
'OCP\Util::sendMail' => '8.1.0',
'OCP\Util::writeLog' => '13.0.0',
+
+ 'OCP\Files::rmdirr' => '14.0.0',
+ 'OCP\Files::getMimeType' => '14.0.0',
+ 'OCP\Files::searchByMime' => '14.0.0',
+ 'OCP\Files::streamCopy' => '14.0.0',
+ 'OCP\Files::buildNotExistingFileName' => '14.0.0',
+ 'OCP\Files::getStorage' => '14.0.0',
];
}
}