From b3a9b7fc2306633e682e09072db9811e99bfc43f Mon Sep 17 00:00:00 2001
From: Andrew Isherwood <andrew.isherwood@ptfs-europe.com>
Date: Fri, 5 Oct 2018 14:31:48 +0100
Subject: [PATCH] Bug 18591: (follow-up) Add more POD

---
 Koha/Illcomment.pm  |  8 ++++++++
 Koha/Illcomments.pm | 46 +++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 53 insertions(+), 1 deletion(-)

diff --git a/Koha/Illcomment.pm b/Koha/Illcomment.pm
index 931f235..3b69e3d 100644
--- a/Koha/Illcomment.pm
+++ b/Koha/Illcomment.pm
@@ -30,6 +30,10 @@ Koha::Illcomment - Koha Illcomment Object class
 
 =head3 patron
 
+    my $patron = Koha::Illcomment->patron;
+
+Return the patron object associated with this comment
+
 =cut
 
 sub patron {
@@ -43,6 +47,10 @@ sub patron {
 
 =head3 _type
 
+    my $type = Koha::IllComment->_type;
+
+Return this object's type
+
 =cut
 
 sub _type {
diff --git a/Koha/Illcomments.pm b/Koha/Illcomments.pm
index a0f18e3..060fa80 100644
--- a/Koha/Illcomments.pm
+++ b/Koha/Illcomments.pm
@@ -1,18 +1,62 @@
 package Koha::Illcomments;
 
-# TODO Add POD
+# Copyright Magnus Enger Libriotech 2017
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 3 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+# details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 51 Franklin
+# Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 use Modern::Perl;
 use Koha::Database;
 use Koha::Illcomment;
 use base qw(Koha::Objects);
 
+=head1 NAME
+
+Koha::Illcomments - Koha Illcomments Object class
+
+=head2 Internal methods
+
+=head3 _type
+
+    my $type = Koha::IllComments->_type;
+
+Return this object's type
+
+=cut
+
 sub _type {
     return 'Illcomments';
 }
 
+=head3 object_class
+
+    my $class = Koha::IllComments->object_class;
+
+Return this object's class name
+
+=cut
+
 sub object_class {
     return 'Koha::Illcomment';
 }
 
+=head1 AUTHOR
+
+Magnus Enger <magnus@libriotech.no>
+
+=cut
+
 1;
-- 
2.1.4