Skip to content

Commit e0efd64

Browse files
committed
Quiet perlcritic and podcoverage tests
1 parent 001d34a commit e0efd64

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

lib/Net/SAML2/Protocol/Artifact.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Net::SAML2::Protocol::Artifact;
2+
use Moose;
23
# VERSION
34

4-
use Moose;
55
use MooseX::Types::DateTime qw/ DateTime /;
66
use DateTime::Format::XSD;
77
use Net::SAML2::XML::Util qw/ no_comments /;

lib/Net/SAML2/Protocol/LogoutResponse.pm

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Net::SAML2::Protocol::LogoutResponse;
2+
use Moose;
23
# VERSION
34

4-
use Moose;
55
use MooseX::Types::URI qw/ Uri /;
66
use Net::SAML2::XML::Util qw/ no_comments /;
77
use Net::SAML2::Util qw/ deprecation_warning /;
@@ -83,12 +83,24 @@ around BUILDARGS => sub {
8383
return $self->$orig(%args);
8484
};
8585

86+
=head2 response_to()
87+
88+
Deprecated use B<in_response_to>
89+
90+
=cut
91+
8692
sub response_to {
8793
my $self = shift;
8894
deprecation_warning("Please use in_response_to instead of response_to");
8995
return $self->in_response_to;
9096
}
9197

98+
=head2 substatus()
99+
100+
Deprecated use B<sub_status>
101+
102+
=cut
103+
92104
sub substatus {
93105
my $self = shift;
94106
deprecation_warning("Please use sub_status instead of substatus");

lib/Net/SAML2/Role/ProtocolMessage.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package Net::SAML2::Role::ProtocolMessage;
2-
# VERSION
3-
42
use Moose::Role;
53

4+
# VERSION
5+
66
# ABSTRACT: Common behaviour for Protocol messages
77

88
use feature qw(state);

0 commit comments

Comments
 (0)