It's not possible that you are referring to the same line as the php parser reports. If you are showing the correct line NUMBER, then you are not showing the correct FILE. What happens is this
class Session {
}
class Session {
}
Cannot redeclare class Session on line 5.
The most likely reason this is happening is that you're running in circles with includes/requires. You might want to change all of them into include_once and require_once. For something like session.php, I'd definitely go with require, since it would indeed be a fatal error if it is missing, not just a minor warning.
However, while require_once would solve the issue at hand since PHP would deal with not including the same file twice, you obviously have a logical error somewhere along the line or you wouldn't be including that file twice. So you should look over your code again.