Coding style fixes

Bumping version and tagging so I can
easily upload changes to plugins DB.
This commit is contained in:
Mark Nelson 2017-12-04 21:05:05 +08:00
parent ae0e587eb4
commit f3238fcd32
3 changed files with 5 additions and 4 deletions

View file

@ -39,8 +39,8 @@ class mod_customcert_generator extends testing_module_generator {
* Creates an instance of the custom certificate.
*
* @param array|stdClass|null $record
* @param array|null $options.
* @return stdClass.
* @param array|null $options
* @return stdClass
*/
public function create_instance($record = null, array $options = null) {
$record = (object)(array)$record;

View file

@ -22,6 +22,7 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
// @codingStandardsIgnoreLine
require_once('../../config.php');
$contextid = optional_param('contextid', context_system::instance()->id, PARAM_INT);

View file

@ -24,10 +24,10 @@
defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
$plugin->version = 2016052317; // The current module version (Date: YYYYMMDDXX).
$plugin->version = 2016052318; // The current module version (Date: YYYYMMDDXX).
$plugin->requires = 2016052300; // Requires this Moodle version (3.1).
$plugin->cron = 0; // Period for cron to check this module (secs).
$plugin->component = 'mod_customcert';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = "3.1 release (Build: 2016052317)"; // User-friendly version number.
$plugin->release = "3.1 release (Build: 2016052318)"; // User-friendly version number.