1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-23 17:34:56 +02:00

MDL-65051 core: delete duplicated plagiarism_cron()

This commit is contained in:
Simey Lameze 2019-03-27 11:37:01 +08:00
parent 39802ea08a
commit 42f58d99f9

@ -97,17 +97,4 @@ abstract class plagiarism_plugin {
*/
public function update_status($course, $cm) {
}
/**
* Deprecated cron method.
*
* This method was added by mistake in the previous versions of Moodle, do not override it since it is never called.
* To implement cron you need to register a scheduled task, see https://docs.moodle.org/dev/Task_API.
* For backward compatibility with the old cron API the method cron() from this class can also be used.
*
* @deprecated since Moodle 3.1 MDL-52702 - please use scheduled tasks instead.
*/
public function plagiarism_cron() {
debugging('plagiarism_plugin::plagiarism_cron() is deprecated. Please use scheduled tasks instead', DEBUG_DEVELOPER);
}
}