. namespace core\test; /** * Generic message user interface. * * @package core * @category test * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @copyright Andrew Lyons */ interface message_user { /** * Get the display name of the user. * * @return string */ public function get_name(): string; /** * Get the email address of the user. * * @return string */ public function get_address(): string; }