mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
MINOR Fixed some inline documentation
This commit is contained in:
parent
d799c80cc5
commit
d81b46f141
@ -65,10 +65,10 @@ class ReportAdmin extends LeftAndMain {
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a DataObjectSet of SS_Report subclasses
|
||||
* Return a SS_List of SS_Report subclasses
|
||||
* that are available for use.
|
||||
*
|
||||
* @return DataObjectSet
|
||||
* @return SS_List
|
||||
*/
|
||||
public function Reports() {
|
||||
$output = new ArrayList();
|
||||
|
@ -353,7 +353,7 @@ class SS_Report extends ViewableData {
|
||||
* }
|
||||
* function sourceRecords($params, $sort, $limit) {
|
||||
* // Do some stuff
|
||||
* // Return a DataObjectSet of actual objects.
|
||||
* // Return a SS_List of actual objects.
|
||||
* }
|
||||
*
|
||||
* This object is used by the default implementation of sourceQuery() on SS_Report, to make use of
|
||||
|
@ -94,7 +94,7 @@ class SearchForm extends Form {
|
||||
*
|
||||
* @param int $pageLength DEPRECATED 2.3 Use SearchForm->pageLength
|
||||
* @param array $data Request data as an associative array. Should contain at least a key 'Search' with all searched keywords.
|
||||
* @return DataObjectSet
|
||||
* @return SS_List
|
||||
*/
|
||||
public function getResults($pageLength = null, $data = null){
|
||||
// legacy usage: $data was defaulting to $_REQUEST, parameter not passed in doc.silverstripe.org tutorials
|
||||
|
Loading…
Reference in New Issue
Block a user