We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e233b5 commit c84f9c8Copy full SHA for c84f9c8
lib/LWP/Protocol/https.pm
@@ -5,7 +5,7 @@ use warnings;
5
6
our $VERSION = '6.14';
7
8
-use base qw(LWP::Protocol::http);
+use parent qw(LWP::Protocol::http);
9
require Net::HTTPS;
10
11
sub socket_type
@@ -112,7 +112,7 @@ if ( $Net::HTTPS::SSL_SOCKET_CLASS->can('start_SSL')) {
112
#-----------------------------------------------------------
113
package LWP::Protocol::https::Socket;
114
115
-use base qw(Net::HTTPS LWP::Protocol::http::SocketMethods);
+use parent -norequire, qw(Net::HTTPS LWP::Protocol::http::SocketMethods);
116
117
1;
118
0 commit comments