You can only initialize member variables with basic types.
You'll have to assign to the static variable after the class declaration, or provide a class-level init method or the like which does the assignment.
class User extends Eloquent {
public static $user = null;
}
User::$user = new Fb();