AmyUser::load_user_info PHP Method

load_user_info() private method

private load_user_info ( $row = [] )
    private function load_user_info($row = array())
    {
        $this->userId = $row['id'];
        $this->username = $row['username'];
        $this->service = $row['service'];
        foreach (array('email', 'nickname', 'picture', 'bio') as $key) {
            $this->credentials[$key] = $row[$key];
        }
    }