. namespace core; /** * Moodle Clock interface. * * @package core * @copyright 2024 Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ interface clock extends \Psr\Clock\ClockInterface { /** * Return the unix time stamp for the current representation of the time. * * @return int */ public function time(): int; }