Subject: | syntax error |
This (around line 52)
my %args = map { ($_, $config->{$_}) }
grep { exists $config->{$_} }
for @PROVIDER_CONFIG_KEYS;
should not have the "for."
Should just be:
my %args = map { ($_, $config->{$_}) }
grep { exists $config->{$_} }
@PROVIDER_CONFIG_KEYS;
This is breaking the module on my platform.
Thank you!!
-Ashley