From 07bf52e4132fe9293ea6a3fb979d7f014e6f52f0 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Tue, 20 Aug 2019 10:40:23 +0200 Subject: [PATCH] Bug 11708: Add missing POD in Koha::Acquisition::Basket MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Séverine QUEUNE --- Koha/Acquisition/Basket.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Koha/Acquisition/Basket.pm b/Koha/Acquisition/Basket.pm index f5e3c87fa0..ca93969127 100644 --- a/Koha/Acquisition/Basket.pm +++ b/Koha/Acquisition/Basket.pm @@ -207,6 +207,14 @@ sub orders { return wantarray ? $self->{_orders}->as_list : $self->{_orders}; } +=head3 total + +Returns basket's total cost + + my $total = $basket->total; + +=cut + sub total { my ($self) = @_; -- 2.20.1