From: Matthias Schmidt Date: Thu, 4 Aug 2011 17:55:47 +0000 (+0200) Subject: Added @deprecated info X-Git-Tag: 2.0.0_Beta_1~1916^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fbae008ea1d6d93f17b48ff00f01252e40d2c150;p=GitHub%2FWoltLab%2FWCF.git Added @deprecated info --- diff --git a/wcfsetup/install/files/lib/util/ArrayUtil.class.php b/wcfsetup/install/files/lib/util/ArrayUtil.class.php index 787656e760..96ea49c5e9 100644 --- a/wcfsetup/install/files/lib/util/ArrayUtil.class.php +++ b/wcfsetup/install/files/lib/util/ArrayUtil.class.php @@ -104,11 +104,12 @@ class ArrayUtil { /** * Alias to php array_intersect_key() function. + * + * @deprecated as of WCF 2.0, use PHP's array_intersect_key() function directly * * @param array $array1 The array with master keys to check. * @param array $array2 An array to compare keys against. * @return Returns an associative array containing all the values of array1 which have matching keys that are present in all arguments. - * @deprecated */ public static function intersectKeys($array1, $array2) { $parameters = func_get_args();