Skip to content

Commit

Permalink
Fix #777 Fix #784
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarsden committed Nov 19, 2024
1 parent 1249aa1 commit f35c602
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/import/marksessions.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ protected function get_column_data($row, $index) {
* @param string $encoding The encoding of the csv file.
* @param string $delimiter The specified delimiter for the file.
* @param string $importid The id of the csv import.
* @param array $mappingdata The mapping data from the import form.
* @param stdClass $mappingdata The mapping data from the import form.
* @param bool $useprogressbar Whether progress bar should be displayed, to avoid html output on CLI.
*/
public function __construct($att, $text = null, $encoding = null, $delimiter = null, $importid = 0,
Expand Down
2 changes: 1 addition & 1 deletion classes/import/sessions.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ protected function get_column_data($row, $index) {
* @param string $encoding The encoding of the csv file.
* @param string $delimiter The specified delimiter for the file.
* @param string $importid The id of the csv import.
* @param array $mappingdata The mapping data from the import form.
* @param stdClass $mappingdata The mapping data from the import form.
* @param bool $useprogressbar Whether progress bar should be displayed, to avoid html output on CLI.
* @param bool $courseshortname Course shortname for the course level imports.
* @param bool $attendanceid ID for the attendance activity for course level imports.
Expand Down
2 changes: 1 addition & 1 deletion classes/summary.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function get_user_taken_sessions_percentages() {
*
* @param int $userid User instance id
*
* @return array
* @return stdClass
*/
public function get_taken_sessions_summary_for($userid) {
$usersummary = new stdClass();
Expand Down

0 comments on commit f35c602

Please sign in to comment.