Make removeDuplicates() chainable

Added the return to allow removeDuplicates to be chained.
This commit is contained in:
Mark Muller 2018-07-24 13:50:37 +01:00 committed by GitHub
parent cc0320b2a7
commit e154aa170c
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;
}
/**