Bug 17826: Add POD

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Kyle M Hall 2018-03-09 10:49:03 -05:00 committed by Jonathan Druart
parent dbc24783ee
commit 4a6c8883cc

View file

@ -30,6 +30,10 @@ use Koha::Patrons;
our $kp; # koha patron
=head1 Methods
=cut
sub new {
my ($class, $patron_id) = @_;
my $type = ref($class) || $class;
@ -474,6 +478,13 @@ sub _get_outstanding_holds {
return \@holds;
}
=head2 build_patron_attributes_string
This method builds the part of the sip message for extended patron
attributes as defined in the sip config
=cut
sub build_patron_attributes_string {
my ( $self, $server ) = @_;