diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-09 09:43:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 09:43:11 +0200 |
commit | 8e1c26b509298c6a7a2d5246f771825e4454d1fd (patch) | |
tree | 37b53169e14fba4d213418085641912ed6f9f9bc /lib/public/Util.php | |
parent | 28f3fe2b723f731be36a5023b5d4e87a9e5a732f (diff) | |
parent | c4b1e1277ba30f0f8011e92cf8a9b3b8159ff143 (diff) | |
download | nextcloud-server-8e1c26b509298c6a7a2d5246f771825e4454d1fd.tar.gz nextcloud-server-8e1c26b509298c6a7a2d5246f771825e4454d1fd.zip |
Merge pull request #11686 from nextcloud/deprecation/noid/ocp_util_recursiveArraySearch
Deprecate unused OCP\Util::recursiveArraySearch
Diffstat (limited to 'lib/public/Util.php')
-rw-r--r-- | lib/public/Util.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php index fb2d31f3dce..3a33a10c620 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -426,6 +426,7 @@ class Util { * @param mixed $index optional, only search this key name * @return mixed the key of the matching field, otherwise false * @since 4.5.0 + * @deprecated 15.0.0 */ public static function recursiveArraySearch($haystack, $needle, $index = null) { return \OC_Helper::recursiveArraySearch($haystack, $needle, $index); |