Skip to content

Commit

Permalink
MINOR Fixed some inline documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stig Lindqvist authored and Stig Lindqvist committed Oct 27, 2011
1 parent d799c80 commit d81b46f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/controllers/ReportAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ function currentPageID() {
}

/**
* 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();
Expand Down
2 changes: 1 addition & 1 deletion code/reports/Report.php
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ static function get_reports($list) {
* }
* 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
Expand Down
2 changes: 1 addition & 1 deletion code/search/SearchForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function getClassesToSearch() {
*
* @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
Expand Down

0 comments on commit d81b46f

Please sign in to comment.