. namespace editor_tiny\privacy; /** * Privacy Subsystem implementation for the TinyMCE Editor. * * @package editor_tiny * @copyright 2022 Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class provider implements \core_privacy\local\metadata\null_provider { /** * Return the langstring identifier for the reason that no privacy provider needs to be implemented for this plugin. * * @return string */ public static function get_reason(): string { return 'privacy:reason'; } }