. namespace core; /** * Shortlink handler for the Moodle core subsystem. * * @package core * @copyright Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class shortlink_handler implements shortlink_handler_interface { #[\Override] public function get_valid_linktypes(): array { return [ ]; } #[\Override] public function process_shortlink( string $type, string $identifier, ): ?\core\url { return null; } }