Merge pull request #8282 from mspacemedia/patch-1

Make removeDuplicates() chainable
This commit is contained in:
Robbie Averill 2018-07-25 08:37:04 +12:00 committed by GitHub
commit aa5adaf958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -253,6 +253,8 @@ class ArrayList extends ViewableData implements SS_List, Filterable, Sortable, L
if ($renumberKeys) {
$this->items = array_values($this->items);
}
return $this;
}
/**