2
0
forked from Wavyzz/dolibarr

Fix warning

This commit is contained in:
Laurent Destailleur
2024-04-02 20:59:20 +02:00
parent d6d81292ac
commit c6cef436dc

View File

@@ -9642,9 +9642,8 @@ function dol_htmloutput_errors($mesgstring = '', $mesgarray = array(), $keepembe
} }
/** /**
* Advanced sort array by second index function, which produces ascending (default) * Advanced sort array by the value of a given key, which produces ascending (default) or descending
* or descending output and uses optionally natural case insensitive sorting (which * output and uses optionally natural case insensitive sorting (which can be optionally case sensitive as well).
* can be optionally case sensitive as well).
* *
* @param array<string|int,mixed> $array Array to sort (array of array('key1'=>val1,'key2'=>val2,'key3'...) or array of objects) * @param array<string|int,mixed> $array Array to sort (array of array('key1'=>val1,'key2'=>val2,'key3'...) or array of objects)
* @param string $index Key in array to use for sorting criteria * @param string $index Key in array to use for sorting criteria