1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-23 10:01:55 +02:00

[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

View File

@@ -23,11 +23,11 @@ class remove_orphaned_roles extends \phpbb\db\migration\migration
public function update_data() public function update_data()
{ {
return [ 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 = []; $auth_role_ids = $role_ids = $auth_settings = [];