Bug 15632 [QA Followup] - Change method type to _type for bug 15446
[koha.git] / Koha / Borrower / Files.pm
index 91a5463..028757d 100644 (file)
@@ -4,45 +4,41 @@ package Koha::Borrower::Files;
 #
 # 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 2 of the License, or (at your option) any later
-# version.
+# 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.
+# 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.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw($VERSION);
 
 use C4::Context;
 use C4::Output;
-use C4::Dates;
 use C4::Debug;
 
 BEGIN {
 
     # set the version for version checking
     $VERSION = 0.01;
-    require Exporter;
-    @ISA    = qw(Exporter);
-    @EXPORT = qw(
-
-    );
-
-    my $debug = C4::Context->preference("DebugLevel");
 }
 
 =head1 NAME
 
 Koha::Borrower::Files - Module for managing borrower files
 
+=head1 METHODS
+
+=over
+
 =cut
 
 sub new {
@@ -82,8 +78,11 @@ sub GetFilesInfo {
 }
 
 =item AddFile()
+
     my $bf = Koha::Borrower::Files->new( borrowernumber => $borrowernumber );
-    $bh->AddFile( name => $filename, type => $mimetype, description => $description, content => $content );
+    $bh->AddFile( name => $filename, type => $mimetype,
+                  description => $description, content => $content );
+
 =cut
 
 sub AddFile {
@@ -107,8 +106,10 @@ sub AddFile {
 }
 
 =item GetFile()
+
     my $bf = Koha::Borrower::Files->new( borrowernumber => $borrowernumber );
     my $file = $bh->GetFile( file_id => $file_id );
+
 =cut
 
 sub GetFile {
@@ -126,8 +127,10 @@ sub GetFile {
 }
 
 =item DelFile()
+
     my $bf = Koha::Borrower::Files->new( borrowernumber => $borrowernumber );
     $bh->DelFile( file_id => $file_id );
+
 =cut
 
 sub DelFile {