From df8cb9e0100a663ecc437ac837512da1c185c47a Mon Sep 17 00:00:00 2001 From: mattclegg Date: Tue, 28 Apr 2020 17:48:21 +0545 Subject: [PATCH] DOCS: Update `filter` to use correct class --- src/ORM/ArrayList.php | 2 +- src/ORM/DataList.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ORM/ArrayList.php b/src/ORM/ArrayList.php index 06bf59bab..6d60d3e13 100644 --- a/src/ORM/ArrayList.php +++ b/src/ORM/ArrayList.php @@ -607,7 +607,7 @@ class ArrayList extends ViewableData implements SS_List, Filterable, Sortable, L * Filter the list to include items with these characteristics * * @return ArrayList - * @see SS_List::filter() + * @see Filterable::filter() * @example $list->filter('Name', 'bob'); // only bob in the list * @example $list->filter('Name', array('aziz', 'bob'); // aziz and bob in list * @example $list->filter(array('Name'=>'bob, 'Age'=>21)); // bob with the Age 21 in list diff --git a/src/ORM/DataList.php b/src/ORM/DataList.php index cbd247606..b494c7441 100644 --- a/src/ORM/DataList.php +++ b/src/ORM/DataList.php @@ -365,7 +365,7 @@ class DataList extends ViewableData implements SS_List, Filterable, Sortable, Li /** * Return a copy of this list which only includes items with these characteristics * - * @see SS_List::filter() + * @see Filterable::filter() * * @example $list = $list->filter('Name', 'bob'); // only bob in the list * @example $list = $list->filter('Name', array('aziz', 'bob'); // aziz and bob in list