. /** * Privacy provider. * * @package auth_userkey * @author Dmitrii Metelkin (dmitriim@catalyst-au.net) * @copyright 2020 Catalyst IT * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace auth_userkey\privacy; use core_privacy\local\metadata\null_provider; use core_privacy\local\legacy_polyfill; /** * Privacy provider. * * @copyright 2020 Catalyst IT * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class provider implements null_provider { use legacy_polyfill; /** * 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() { return 'privacy:metadata'; } }