. namespace core_webservice\privacy; /** * Privacy provider class for the core_webservice component. * * @package core_webservice * @copyright 2018 Frédéric Massart * @author Frédéric Massart * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class provider implements \core_privacy\local\metadata\null_provider { /** * Get the lang string identifier for the reason that no data is returned by the Privacy API. * * @return string */ public static function get_reason(): string { return 'privacy:metadata'; } }