mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
ff656baeab
Part of MDL-57791 epic.
8 lines
212 B
PHP
8 lines
212 B
PHP
<?php
|
|
|
|
class test_indicator_max extends \core_analytics\local\indicator\binary {
|
|
protected function calculate_sample($sampleid, $samplesorigin, $starttime, $endtime) {
|
|
return self::MAX_VALUE;
|
|
}
|
|
}
|