update deprecation docs
This commit is contained in:
parent
27d94e9273
commit
fd798fd982
|
@ -279,7 +279,7 @@ class OC {
|
||||||
* check if the instance needs to preform an upgrade
|
* check if the instance needs to preform an upgrade
|
||||||
*
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
* @deprecated use \OCP\Util::needUpgrade instead
|
* @deprecated use \OCP\Util::needUpgrade() instead
|
||||||
*/
|
*/
|
||||||
public static function needUpgrade() {
|
public static function needUpgrade() {
|
||||||
return \OCP\Util::needUpgrade();
|
return \OCP\Util::needUpgrade();
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* provides an interface to all search providers
|
* provides an interface to all search providers
|
||||||
* @deprecated see lib/search.php
|
* @deprecated use \OCP\ISearch / \OC\Search instead
|
||||||
*/
|
*/
|
||||||
class OC_Search {
|
class OC_Search {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -64,7 +64,7 @@ class OC_User {
|
||||||
/**
|
/**
|
||||||
* registers backend
|
* registers backend
|
||||||
* @param string $backend name of the backend
|
* @param string $backend name of the backend
|
||||||
* @deprecated Add classes by calling useBackend with a class instance instead
|
* @deprecated Add classes by calling OC_User::useBackend() with a class instance instead
|
||||||
* @return bool
|
* @return bool
|
||||||
*
|
*
|
||||||
* Makes a list of backends that can be used by other modules
|
* Makes a list of backends that can be used by other modules
|
||||||
|
|
|
@ -97,7 +97,7 @@ function relative_modified_date( $timestamp, $dateOnly = false ) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a human readable outout for a file size.
|
* Return a human readable outout for a file size.
|
||||||
* @deprecated human_file_size() instead
|
* @deprecated use human_file_size() instead
|
||||||
* @param integer $bytes size of a file in byte
|
* @param integer $bytes size of a file in byte
|
||||||
* @return string human readable interpretation of a file size
|
* @return string human readable interpretation of a file size
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue