Skip to content

Commit

Permalink
Tracking down Code prechecks errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Jun 7, 2020
1 parent a59345c commit ab17dbb
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ script:
- moodle-plugin-ci validate
- moodle-plugin-ci savepoints
- moodle-plugin-ci mustache
- moodle-plugin-ci grunt || true
- moodle-plugin-ci grunt --force || true
- moodle-plugin-ci phpunit
- if [ $BEHAT == 'yes' ]; then
moodle-plugin-ci behat || travis_terminate 1;
Expand Down
2 changes: 1 addition & 1 deletion classes/differentiator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* TODO.
* Class differentiator.
*
* @package local_differentiator
* @copyright 2019 Luca Bösch <[email protected]>
Expand Down
8 changes: 4 additions & 4 deletions classes/external/handlers.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* TODO.
* Class handlers.
*
* @package local_differentiator
* @copyright 2019 Luca Bösch <[email protected]>
Expand Down Expand Up @@ -44,7 +44,7 @@
class handlers extends \external_api {
// Taken from mod/choicegroup/classes/external.php.
/**
* Definition of parameters for {@link get_handlers()}.
* Definition of parameters for {@see get_handlers()}.
* Returns description of method parameters.
*
* @return external_function_parameters
Expand All @@ -59,7 +59,7 @@ public static function get_handlers_parameters() {
}

/**
* Definition of return type for {@link get_handlers()}.
* Definition of return type for {@see get_handlers()}.
* Returns description of method result value.
*
* @return external_multiple_structure
Expand Down Expand Up @@ -201,4 +201,4 @@ public static function get_handlers($userid, $learninggoalid) {
$list[] = $exporter->export($renderer);
return $list;
}
}
}
16 changes: 8 additions & 8 deletions classes/external/learninggoal.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/
class learninggoal extends \external_api {
/**
* Definition of parameters for {@link get_learninggoal()}.
* Definition of parameters for {@see get_learninggoal()}.
* Returns description of method parameters.
*
* @return external_function_parameters
Expand All @@ -57,7 +57,7 @@ public static function get_learninggoal_parameters() {
}

/**
* Definition of parameters for {@link save_learninggoal()}.
* Definition of parameters for {@see save_learninggoal()}.
* Returns description of method parameters.
*
* @return external_function_parameters
Expand All @@ -81,7 +81,7 @@ public static function save_learninggoal_parameters() {
}

/**
* Definition of parameters for {@link delete_learninggoal()}.
* Definition of parameters for {@see delete_learninggoal()}.
* Returns description of method parameters.
*
* @return external_function_parameters
Expand All @@ -94,7 +94,7 @@ public static function delete_learninggoal_parameters() {
}

/**
* Definition of parameters for {@link duplicate_learninggoal()}.
* Definition of parameters for {@see duplicate_learninggoal()}.
* Returns description of method parameters.
*
* @return external_function_parameters
Expand All @@ -107,7 +107,7 @@ public static function duplicate_learninggoal_parameters() {
}

/**
* Definition of return type for {@link get_learninggoal()}.
* Definition of return type for {@see get_learninggoal()}.
* Returns description of method result value.
*
* @return external_multiple_structure
Expand All @@ -119,7 +119,7 @@ public static function get_learninggoal_returns() {
}

/**
* Definition of return type for {@link save_learninggoal()}.
* Definition of return type for {@see save_learninggoal()}.
* Returns description of method result value.
*
* @return external_single_structure
Expand All @@ -129,7 +129,7 @@ public static function save_learninggoal_returns() {
}

/**
* Definition of return type for {@link delete_learninggoal()}.
* Definition of return type for {@see delete_learninggoal()}.
* Returns description of method result value.
*
* @return external_single_structure
Expand All @@ -139,7 +139,7 @@ public static function delete_learninggoal_returns() {
}

/**
* Definition of return type for {@link duplicate_learninggoal()}.
* Definition of return type for {@see duplicate_learninggoal()}.
* Returns description of method result value.
*
* @return external_single_structure
Expand Down
6 changes: 3 additions & 3 deletions classes/external/learninggoals.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* TODO.
* Class learninggoals.
*
* @package local_differentiator
* @copyright 2019 Luca Bösch <[email protected]>
Expand All @@ -40,7 +40,7 @@
*/
class learninggoals extends \external_api {
/**
* Definition of parameters for {@link get_learninggoals()}.
* Definition of parameters for {@see get_learninggoals()}.
* Returns description of method parameters.
*
* @return external_function_parameters
Expand All @@ -53,7 +53,7 @@ public static function get_learninggoals_parameters() {
}

/**
* Definition of parameters for {@link get_learninggoals()}.
* Definition of parameters for {@see get_learninggoals()}.
* Returns description of method result value.
*
* @return external_multiple_structure
Expand Down
2 changes: 1 addition & 1 deletion classes/form/learninggoal_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* TODO.
* Class learninggoal_edit.
*
* @package local_differentiator
* @copyright 2019 Luca Bösch <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion classes/form/learninggoal_edit_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* TODO.
* Class learninggoal_edit_controller.
*
* @package local_differentiator
* @copyright 2019 Luca Bösch <[email protected]>
Expand Down

0 comments on commit ab17dbb

Please sign in to comment.