Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcghaly committed Dec 19, 2023
1 parent 16a8d97 commit c8f58aa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions classes/table/acknowledged_notice.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected function define_table_configs(\moodle_url $url) {
}

/**
* Get sql query
* Get sql query for acknowledged notices
*
* @param bool $count whether count or get records.
* @return array
Expand Down Expand Up @@ -173,7 +173,7 @@ protected function get_sql_and_params($count = false) {
}

/**
* Get filter sql
* Get filter sql for acknowledged notices
* @return array
*/
protected function get_filters_sql_and_params() {
Expand All @@ -188,7 +188,7 @@ protected function get_filters_sql_and_params() {
}

/**
* Get data.
* Get data for acknowledged notices.
* @param int $pagesize number of records to fetch
* @param bool $useinitialsbar initial bar
* @throws \dml_exception
Expand Down Expand Up @@ -217,7 +217,7 @@ public function query_db($pagesize, $useinitialsbar = true) {
/**
* Custom time column.
*
* @param \stdClass $row dismissed notice record
* @param \stdClass $row acknowledged notice record
* @return string
*/
protected function col_timecreated($row) {
Expand All @@ -232,7 +232,7 @@ protected function col_timecreated($row) {
/**
* Custom time for spreadsheet date time.
*
* @param \stdClass $row dismissed notice record
* @param \stdClass $row acknowledged notice record
* @return string
*/
protected function col_timecreated_spreadsheet($row) {
Expand Down
8 changes: 4 additions & 4 deletions classes/table/dismissed_notice.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected function define_table_columns() {
}

/**
* Define table configuration.
* Define table configuration for dismissed notice.
*
* @param \moodle_url $url
*/
Expand All @@ -124,7 +124,7 @@ protected function define_table_configs(\moodle_url $url) {
}

/**
* Get sql query
* Get sql query for dismissed notices
*
* @param bool $count whether count or get records.
* @return array
Expand Down Expand Up @@ -152,7 +152,7 @@ protected function get_sql_and_params($count = false) {
}

/**
* Get filter sql
* Get filter sql for dismissed notices
*
* @return array
*/
Expand All @@ -168,7 +168,7 @@ protected function get_filters_sql_and_params() {
}

/**
* Get data.
* Get data for dismissed notices.
*
* @param int $pagesize number of records to fetch
* @param bool $useinitialsbar initial bar
Expand Down

0 comments on commit c8f58aa

Please sign in to comment.