Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
22 | class Collections |
||
23 | { |
||
24 | /** |
||
25 | * Sorts the specified list according to the order induced by the specified comparator. All elements in the list |
||
26 | * must be mutually comparable. |
||
27 | * |
||
28 | * @param ArrayList $list |
||
29 | * @param Comparator $comparator |
||
30 | * @return ArrayList |
||
31 | */ |
||
32 | public static function sort(ArrayList &$list, Comparator $comparator) |
||
40 |