MDL-81525 core: Tidy up hook tags

This commit is contained in:
Andrew Nicols 2024-04-14 14:45:09 +08:00
parent 8cf14f6e70
commit 1e36531d0d
No known key found for this signature in database
GPG Key ID: 6D1E3157C8CFBF14
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ use context;
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
#[\core\attribute\label('Allows plugins or features to perform actions after a role is assigned to a user.')]
#[\core\attribute\tags('role,', 'user')]
#[\core\attribute\tags('role', 'user')]
class after_role_assigned {
/**

View File

@ -26,7 +26,7 @@ use context;
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
#[\core\attribute\label('Allows plugins or features to perform actions after a role is unassigned for a user.')]
#[\core\attribute\tags('role,', 'user')]
#[\core\attribute\tags('role', 'user')]
class after_role_unassigned {
/**