[ticket/16895] Rename custom method

PHPBB3-16895
This commit is contained in:
rxu 2021-11-10 14:13:02 +07:00
parent d7f433fbf7
commit 69b895caae
No known key found for this signature in database
GPG key ID: 14C89C9F50DA21E6

View file

@ -23,11 +23,11 @@ class remove_orphaned_roles extends \phpbb\db\migration\migration
public function update_data()
{
return [
['custom', [[$this, 'remove_orphaned_roles']]],
['custom', [[$this, 'acl_remove_orphaned_roles']]],
];
}
public function remove_orphaned_roles()
public function acl_remove_orphaned_roles()
{
$auth_role_ids = $role_ids = $auth_settings = [];