Skip to content
Snippets Groups Projects
Unverified Commit e13fe076 authored by Morris Jobke's avatar Morris Jobke
Browse files

Add OCP\User deprecations to app code checker


Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent 4ae04c3d
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,7 @@ class DeprecationCheck extends AbstractCheck implements ICheck { ...@@ -44,6 +44,7 @@ class DeprecationCheck extends AbstractCheck implements ICheck {
'OCP\JSON' => '8.1.0', 'OCP\JSON' => '8.1.0',
'OCP\Response' => '8.1.0', 'OCP\Response' => '8.1.0',
'OCP\AppFramework\IApi' => '8.0.0', 'OCP\AppFramework\IApi' => '8.0.0',
'OCP\User' => '13.0.0',
]; ];
} }
...@@ -141,6 +142,9 @@ class DeprecationCheck extends AbstractCheck implements ICheck { ...@@ -141,6 +142,9 @@ class DeprecationCheck extends AbstractCheck implements ICheck {
'OCP\User::userExists' => '8.1.0', 'OCP\User::userExists' => '8.1.0',
'OCP\User::logout' => '8.1.0', 'OCP\User::logout' => '8.1.0',
'OCP\User::checkPassword' => '8.1.0', 'OCP\User::checkPassword' => '8.1.0',
'OCP\User::isLoggedIn' => '13.0.0',
'OCP\User::checkAdminUser' => '13.0.0',
'OCP\User::checkLoggedIn' => '13.0.0',
'OCP\Util::encryptedFiles' => '8.1.0', 'OCP\Util::encryptedFiles' => '8.1.0',
'OCP\Util::formatDate' => '8.0.0', 'OCP\Util::formatDate' => '8.0.0',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment