addUserToGroup() method of GroupModel have a string
return (bool) $this->db->table('auth_groups_users')->insert($data);
which is not needed, because queryBuilder's insert method already returns boolean. So as Rector mentioned there is we have recasting issue.
addUserToGroup() method of GroupModel have a string
return (bool) $this->db->table('auth_groups_users')->insert($data);
which is not needed, because queryBuilder's insert method already returns boolean. So as Rector mentioned there is we have recasting issue.