From 1fa9342ae7d2d5afd5d34b69e3ccf9ee7155576a Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 17 Jun 2020 14:04:14 +0100 Subject: [PATCH] Bug 25723: (QA follow-up) Silent POD warning I didn't introduce the method that is warned about, but adding POD for it seemed reasonable and will silence the QA Script warning. Signed-off-by: Nick Clemens --- Koha/Calendar.pm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Koha/Calendar.pm b/Koha/Calendar.pm index d17989d2f5..c0dcd8e93d 100644 --- a/Koha/Calendar.pm +++ b/Koha/Calendar.pm @@ -500,6 +500,15 @@ representing the previous open day after subtracting the number of passed days. It is intended for use to calculate the due date when useDaysMode syspref is set to either 'Datedue', 'Calendar' or 'Dayweek'. +=head2 days_forward + +$datetime = $calendar->days_forward($start_dt, $to_add) + +Passed a Datetime and number of days, returns another Datetime representing +the next open day after adding the passed number of days. It is intended for +use to calculate the due date when useDaysMode syspref is set to either +'Datedue', 'Calendar' or 'Dayweek'. + =head2 set_daysmode For testing only allows the calling script to change days mode -- 2.11.0