lonnieezell / myth-auth

One-stop Auth package for CodeIgniter 4
MIT License
633 stars 206 forks source link

fix pipeline issues - rector error #577

Closed manageruz closed 1 year ago

manageruz commented 1 year ago

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.

manageruz commented 1 year ago

Thank you for the review.