diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-08 18:33:09 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-10-08 18:33:09 +0200 |
commit | c4b1e1277ba30f0f8011e92cf8a9b3b8159ff143 (patch) | |
tree | cf6b9b462b293167f219689409c972640c0e3a9d | |
parent | 2a9e00635531a9b4269c9dc8fc97eeca1e6ce8cf (diff) | |
download | nextcloud-server-c4b1e1277ba30f0f8011e92cf8a9b3b8159ff143.tar.gz nextcloud-server-c4b1e1277ba30f0f8011e92cf8a9b3b8159ff143.zip |
Deprecate unused OCP\Util::recursiveArraySearch
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-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 3a1c28a899a..bf1a83037f1 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -421,6 +421,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); |