Subject: | is_protocol_supported documented only as instance method |
is_protocol_supported documented only as instance method, however it
works as class method LWP::UserAgent->is_protocol_supported("https")
there seems to be special support for class method.
if(ref($self) and $x = $self->protocols_allowed) {
return 0 unless grep lc($_) eq $scheme, @$x;
}
Would be good if you document it as class method as well, as I use it in
my application and I am not sure if it will be removed in the future or no.