Skip to content

Commit

Permalink
codestyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
irinahpe committed Apr 15, 2024
1 parent d7f687c commit 41bf92a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions locallib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1634,9 +1634,11 @@ public function get_users_with_ratings() {
'ratingallocateid' => $this->ratingallocateid,
'ratersincourse' => implode(
" , ",
array_map(function ($rater) {
return $rater->id;
}, $this-> get_raters_in_course())
array_map(
function ($rater) {
return $rater->id;
},
$this->get_raters_in_course())
)
));

Expand Down

0 comments on commit 41bf92a

Please sign in to comment.