- or download this
use warnings;
use strict;
...
use Test::More;
...
- or download this
sub _register_hooks {
my $self = shift;
...
code => sub {
my $tokens = shift;
...
- or download this
sub _register_hooks {
my ($self, $token) = @_;
...
- or download this
sub BUILD {
shift->_register_hooks;
return;
}
- or download this
sub BUILD {
$_[0]->_register_hooks;
}
- or download this
sub _validator_language {
shift->config_validator->language(shift);
return;
}
- or download this
sub _validator_language {
$_[0]->config_validator->language($_[1]);
}
- or download this
sub _access_token_data {
# Fetches and stores the access token data to the AUTH_CACHE_FILE
...
my ($self, $token_data) = @_;
}