From 4a6c8883cc9022ab70459d978267c883062260a4 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 9 Mar 2018 10:49:03 -0500 Subject: [PATCH] Bug 17826: Add POD Signed-off-by: Jonathan Druart --- C4/SIP/ILS/Patron.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/C4/SIP/ILS/Patron.pm b/C4/SIP/ILS/Patron.pm index 17bc4ff4c3..92c032aa5b 100644 --- a/C4/SIP/ILS/Patron.pm +++ b/C4/SIP/ILS/Patron.pm @@ -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 ) = @_; -- 2.20.1