mirror of
https://github.com/moodle/moodle.git
synced 2025-07-22 23:01:21 +02:00
MDL-81919 core: Fix coding style issues for recently moved code
This commit is contained in:
@@ -25,11 +25,12 @@
|
||||
*/
|
||||
class coding_exception extends moodle_exception {
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
*
|
||||
* @param string $hint short description of problem
|
||||
* @param string $debuginfo detailed information how to fix problem
|
||||
*/
|
||||
function __construct($hint, $debuginfo=null) {
|
||||
public function __construct($hint, $debuginfo = null) {
|
||||
parent::__construct('codingerror', 'debug', '', $hint, $debuginfo);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user