style: apply Moodle coding standards
Moodle Plugin CI / test (push) Successful in 1m27s

This commit is contained in:
2026-08-12 17:13:30 +00:00
parent 91111b66d3
commit 0d4bf6a208
17 changed files with 157 additions and 145 deletions
+5 -5
View File
@@ -24,19 +24,19 @@
namespace local_webhooks\privacy;
defined('MOODLE_INTERNAL') || die();
/**
* Declares that the plugin does not store personal data.
*/
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 {
public static function get_reason(): string {
return 'privacy:metadata';
}
}
}