- or download this
sub doit {
...
Database::Special->doSomethingSpecial($db);
# no need to rebless, you haven't tampered with $db
}
- or download this
sub doSomethingSpecial {
my ($self) = @_;
...
}
- or download this
sub doSomethingSpecial {
my ($class, $object) = @_;
...
}