@@ -, +, @@ --- Koha/Report.pm | 4 +++- Koha/Reports.pm | 10 +++++++++- t/db_dependent/Koha/Reports.t | 2 -- 3 files changed, 12 insertions(+), 4 deletions(-) --- a/Koha/Report.pm +++ a/Koha/Report.pm @@ -33,7 +33,9 @@ Koha::Report - Koha Report Object class =cut -=head3 type +=head3 _type + +Returns name of corresponding DBIC resultset =cut --- a/Koha/Reports.pm +++ a/Koha/Reports.pm @@ -35,7 +35,9 @@ Koha::Reports - Koha Report Object set class =cut -=head3 type +=head3 _type + +Returns name of corresponding DBIC resultset =cut @@ -43,6 +45,12 @@ sub _type { return 'SavedSql'; } +=head3 object_class + +Returns name of corresponding Koha Object Class + +=cut + sub object_class { return 'Koha::Report'; } --- a/t/db_dependent/Koha/Reports.t +++ a/t/db_dependent/Koha/Reports.t @@ -1,7 +1,5 @@ #!/usr/bin/perl -# Copyright 2015 Koha Development team -# # This file is part of Koha # # Koha is free software; you can redistribute it and/or modify it --