Skip to content

Commit

Permalink
Fix commit 75c489e
Browse files Browse the repository at this point in the history
  • Loading branch information
watson8 committed Sep 23, 2024
1 parent c612b59 commit ef4ef51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/stages/assessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class assessor extends base {
* @throws \coding_exception
* @return string
*/
protected function strategy_name() {
protected function strategy_name(): string {
if (empty($this->get_coursework()->assessorallocationstrategy)) {
return 'none';
}
Expand Down
2 changes: 1 addition & 1 deletion classes/stages/final_agreed.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function uses_allocation() {
/**
* @return string
*/
protected function strategy_name() {
protected function strategy_name(): string {
return 'none';
}

Expand Down
2 changes: 1 addition & 1 deletion classes/stages/moderator.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected function assessor_capability() {
/**
* @return string
*/
protected function strategy_name() {
protected function strategy_name(): string {
return 'none';
}

Expand Down

0 comments on commit ef4ef51

Please sign in to comment.