. /** * Contains the title value object interface, which provides a basic interface to a string. * * @package core * @subpackage course * @copyright 2020 Jake Dallimore * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_course\local\entity; defined('MOODLE_INTERNAL') || die(); interface title { /** * Get the value of this title. */ public function get_value(): string; }