. /** * Privacy Subsystem implementation for local_webhooks. * * @package local_webhooks * @copyright 2020 Dmitrii Metelkin * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace local_webhooks\privacy; defined('MOODLE_INTERNAL') || die(); class provider implements // This plugin does not store any personal user data. \core_privacy\local\metadata\null_provider { /** * Get the language string identifier with the component's language * file to explain why this plugin stores no data. * * @return string */ public static function get_reason() : string { return 'privacy:metadata'; } }