Fix complaints found by local_moodlecheck
This commit is contained in:
parent
8358280c6c
commit
a26d58bf33
4 changed files with 20 additions and 1 deletions
|
@ -442,6 +442,8 @@ class element extends \mod_customcert\element {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns whether or not a range is recurring.
|
||||
*
|
||||
* @param \stdClass $range Range object.
|
||||
*
|
||||
* @return bool
|
||||
|
@ -597,6 +599,7 @@ class element extends \mod_customcert\element {
|
|||
/**
|
||||
* Format date string based on different types of placeholders.
|
||||
*
|
||||
* @param string $datestring The date string
|
||||
* @param array $formatdata A list of format data.
|
||||
*
|
||||
* @return string
|
||||
|
|
|
@ -27,6 +27,13 @@ global $CFG;
|
|||
|
||||
require_once($CFG->dirroot . '/mod/customcert/element/daterange/tests/fixtures/fake_datarange_element.php');
|
||||
|
||||
/**
|
||||
* Test datarange element.
|
||||
*
|
||||
* @package customcertelement_daterange
|
||||
* @copyright 2018 Dmitrii Metelkin <dmitriim@catalyst-au.net>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class customcertelement_daterange_element_test extends advanced_testcase {
|
||||
|
||||
/**
|
||||
|
|
|
@ -24,6 +24,13 @@
|
|||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Fake datarange element for testing.
|
||||
*
|
||||
* @package customcertelement_daterange
|
||||
* @copyright 2018 Dmitrii Metelkin <dmitriim@catalyst-au.net>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class fake_datarange_element extends \customcertelement_daterange\element {
|
||||
|
||||
/**
|
||||
|
|
|
@ -37,7 +37,9 @@ require_once($CFG->libdir . '/tcpdf/tcpdf_barcodes_2d.php');
|
|||
*/
|
||||
class element extends \mod_customcert\element {
|
||||
|
||||
|
||||
/**
|
||||
* @var string The barcode type.
|
||||
*/
|
||||
const BARCODETYPE = 'QRCODE';
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue