- or download this
sub new {
my ($class, %args) = @_;
...
die 'ERROR WITH CONNECTION AUTH' unless $self->_connection_try();
return $self;
}
- or download this
my $a;
...
{
# use $a normally
}
- or download this
sub _arg_validation {
my $args = shift;
...
$args->{password} =~ /\w{2,}/;
return 0;
}