mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 00:16:46 +02:00
MDL-27123 fix coding style and add missing parameters in phpdocs
This commit is contained in:
parent
7351b54e86
commit
3867494381
1 changed files with 8 additions and 3 deletions
|
@ -7310,14 +7310,19 @@ class admin_setting_configcolourpicker extends admin_setting {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Multiselect for current modules
|
* Multiselect for current modules
|
||||||
*
|
*
|
||||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
*/
|
*/
|
||||||
class admin_setting_configmultiselect_modules extends admin_setting_configmultiselect {
|
class admin_setting_configmultiselect_modules extends admin_setting_configmultiselect {
|
||||||
/**
|
/**
|
||||||
* Calls parent::__construct - note array $choices is not required
|
* Calls parent::__construct - note array $choices is not required
|
||||||
|
*
|
||||||
|
* @param string $name setting name
|
||||||
|
* @param string $visiblename localised setting name
|
||||||
|
* @param string $description setting description
|
||||||
*/
|
*/
|
||||||
public function __construct($name, $visiblename, $description) {
|
public function __construct($name, $visiblename, $description) {
|
||||||
parent::__construct($name, $visiblename, $description, array(), null);
|
parent::__construct($name, $visiblename, $description, array(), null);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue