diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-22 08:33:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 08:33:32 +0100 |
commit | dc4ba31e7e764b35ddfabe178ddc72a8cda264f3 (patch) | |
tree | 1901ecf37159d1ca792dbe74ab19915d5cf7b255 /lib/private | |
parent | c1b36e165e3a4126a4983f395f7a774621f6898f (diff) | |
parent | 8eb57dd835158d05b9a1f8f38e1a1af85023e6dd (diff) | |
download | nextcloud-server-dc4ba31e7e764b35ddfabe178ddc72a8cda264f3.tar.gz nextcloud-server-dc4ba31e7e764b35ddfabe178ddc72a8cda264f3.zip |
Merge pull request #8922 from nextcloud/deprecated-ocp-files-methods
Deprecated some methods of OCP\Files
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/App/CodeChecker/DeprecationCheck.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/App/CodeChecker/DeprecationCheck.php b/lib/private/App/CodeChecker/DeprecationCheck.php index 3e843e4f91a..518ab1ec380 100644 --- a/lib/private/App/CodeChecker/DeprecationCheck.php +++ b/lib/private/App/CodeChecker/DeprecationCheck.php @@ -46,6 +46,7 @@ class DeprecationCheck extends AbstractCheck { 'OCP\User' => '13.0.0', 'OCP\BackgroundJob' => '14.0.0', 'OCP\App' => '14.0.0', + 'OCP\Files' => '14.0.0', ]; } @@ -174,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', ]; } } |