M
Matija Papec
X-Ftn-To: Lack Mr G M
Isn't your last example potentially troublesome in case of class
inheritance?
my $tko1 = MyToken->from_token('token' => $token);
my $tko2 = MyToken->via_login('id' => yourid, 'password' => yourpassword);
Some poeple seem to be advocating this conveying more:
my $tko1 = from_token MyToken('token' => $token);
my $tko2 = via_login MyToken('id' => yourid, 'password' => yourpassword);
I can't see it myself.
Isn't your last example potentially troublesome in case of class
inheritance?