I'm trying to update an user with update_user function. But I have got this error.
Fatal error: Uncaught exception ‘Exception’ with message ‘Undefined method on_auth::update_user() called’
My code is
$id = 8;
$data = array(
'first_name' => 'Ben',
'last_name' => 'Edmunds',
);
$this->ion_auth->update_user($id, $data);