From 7cd112dfd595357d5ee024d421df280abd0219c5 Mon Sep 17 00:00:00 2001 From: Mark Nielsen Date: Mon, 29 Dec 2014 10:55:09 -0800 Subject: [PATCH] MDL-48644 backup tool_log: Fixing coding style Wrap long function definition to next line. --- admin/tool/log/classes/log/manager.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/tool/log/classes/log/manager.php b/admin/tool/log/classes/log/manager.php index 8bc3c4c0540..9c286f0f4d7 100644 --- a/admin/tool/log/classes/log/manager.php +++ b/admin/tool/log/classes/log/manager.php @@ -216,7 +216,8 @@ class manager implements \core\log\manager { * @param string $ip Override the IP, should only be used for restore. * @param int $time Override the log time, should only be used for restore. */ - public function legacy_add_to_log($courseid, $module, $action, $url = '', $info = '', $cm = 0, $user = 0, $ip = null, $time = null) { + public function legacy_add_to_log($courseid, $module, $action, $url = '', $info = '', + $cm = 0, $user = 0, $ip = null, $time = null) { $this->init(); if (isset($this->stores['logstore_legacy'])) { $this->stores['logstore_legacy']->legacy_add_to_log($courseid, $module, $action, $url, $info, $cm, $user, $ip, $time);