X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Futils%2FArrayUtils.php;h=1e521cb8b9b1b9f4766fcf9c6203a213f4e19124;hb=de79f9af57f3e72d30a88e26311907daa55893b7;hp=037663c292318bc7e709b5ca5801dde237a181ab;hpb=96603cd221051a324c902b6d4debd88ff1418404;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/utils/ArrayUtils.php b/includes/utils/ArrayUtils.php index 037663c292..1e521cb8b9 100644 --- a/includes/utils/ArrayUtils.php +++ b/includes/utils/ArrayUtils.php @@ -109,7 +109,9 @@ class ArrayUtils { * @return int|bool The item index of the lower bound, or false if the target value * sorts before all items. */ - public static function findLowerBound( $valueCallback, $valueCount, $comparisonCallback, $target ) { + public static function findLowerBound( $valueCallback, $valueCount, + $comparisonCallback, $target + ) { if ( $valueCount === 0 ) { return false; } @@ -149,8 +151,7 @@ class ArrayUtils { * @since 1.23 * * @param array $array1 The array to compare from - * @param array $array2 An array to compare against - * @param array ... More arrays to compare against + * @param array $array2,... More arrays to compare against * @return array An array containing all the values from array1 * that are not present in any of the other arrays. */