Hi,
I want to add another item to my session after that this session is create. I have this :
private function _registerSession($user, $account)
{
$this->session->set('auth', array(
'user_id' => $user->id,
'username' => $user->name
));
}
And in another controller I want to edit this session for example :
$auth = $this->session->get('auth');
$auth->add('account_id', '10');
How this is possible to do that ?