@@ -841,7 +841,7 @@ public function arsorted( int $options = SORT_REGULAR ) : self
841
841
```
842
842
843
843
* @param ** int** ` $options ` Sort options for ` arsort() `
844
- * @return ** self< ; int| ; string,mixed> ; ** Updated map for fluid interface
844
+ * @return ** self< ; int| ; string,mixed> ; ** New map
845
845
846
846
The keys are preserved using this method and a new map is created.
847
847
@@ -925,7 +925,7 @@ public function asorted( int $options = SORT_REGULAR ) : self
925
925
```
926
926
927
927
* @param ** int** ` $options ` Sort options for ` asort() `
928
- * @return ** self< ; int| ; string,mixed> ; ** Updated map for fluid interface
928
+ * @return ** self< ; int| ; string,mixed> ; ** New map
929
929
930
930
The keys are preserved using this method and a new map is created.
931
931
@@ -3859,7 +3859,7 @@ public function krsorted( int $options = SORT_REGULAR ) : self
3859
3859
```
3860
3860
3861
3861
* @param ** int** ` $options ` Sort options for ` krsort() `
3862
- * @return ** self< ; int| ; string,mixed> ; ** Updated map for fluid interface
3862
+ * @return ** self< ; int| ; string,mixed> ; ** New map
3863
3863
3864
3864
The parameter modifies how the keys are compared. Possible values are:
3865
3865
- SORT_REGULAR : compare elements normally (don't change types)
@@ -5107,7 +5107,7 @@ public function rsorted( int $options = SORT_REGULAR ) : self
5107
5107
```
5108
5108
5109
5109
* @param ** int** ` $options ` Sort options for ` rsort() `
5110
- * @return ** self< ; int| ; string,mixed> ; ** Updated map for fluid interface
5110
+ * @return ** self< ; int| ; string,mixed> ; ** New map
5111
5111
5112
5112
The parameter modifies how the values are compared. Possible parameter values are:
5113
5113
- SORT_REGULAR : compare elements normally (don't change types)
@@ -5491,7 +5491,7 @@ public function sorted( int $options = SORT_REGULAR ) : self
5491
5491
```
5492
5492
5493
5493
* @param ** int** ` $options ` Sort options for PHP ` sort() `
5494
- * @return ** self< ; int| ; string,mixed> ; ** New map with a sorted copy of the elements
5494
+ * @return ** self< ; int| ; string,mixed> ; ** New map
5495
5495
5496
5496
The parameter modifies how the values are compared. Possible parameter values are:
5497
5497
- SORT_REGULAR : compare elements normally (don't change types)
@@ -6833,7 +6833,7 @@ public function uksort( callable $callback ) : self
6833
6833
```
6834
6834
6835
6835
* @param ** callable** ` $callback ` Function with (keyA, keyB) parameters and returns -1 (<), 0 (=) and 1 (>)
6836
- * @return ** self< ; int| ; string,mixed> ; ** Updated map for fluid interface
6836
+ * @return ** self< ; int| ; string,mixed> ; ** New map
6837
6837
6838
6838
The given callback will be used to compare the keys. The callback must accept
6839
6839
two parameters (key A and B) and must return -1 if key A is smaller than
@@ -7052,7 +7052,7 @@ public function usorted( callable $callback ) : self
7052
7052
```
7053
7053
7054
7054
* @param ** callable** ` $callback ` Function with (itemA, itemB) parameters and returns -1 (<), 0 (=) and 1 (>)
7055
- * @return ** self< ; int| ; string,mixed> ; ** Updated map for fluid interface
7055
+ * @return ** self< ; int| ; string,mixed> ; ** New map
7056
7056
7057
7057
The given callback will be used to compare the values. The callback must accept
7058
7058
two parameters (item A and B) and must return -1 if item A is smaller than
0 commit comments