View | Details | Raw Unified | Return to bug 20052
Collapse All | Expand All

(-)a/Koha/Report.pm (-1 / +3 lines)
Lines 33-39 Koha::Report - Koha Report Object class Link Here
33
33
34
=cut
34
=cut
35
35
36
=head3 type
36
=head3 _type
37
38
Returns name of corresponding DBIC resultset
37
39
38
=cut
40
=cut
39
41
(-)a/Koha/Reports.pm (-1 / +9 lines)
Lines 35-41 Koha::Reports - Koha Report Object set class Link Here
35
35
36
=cut
36
=cut
37
37
38
=head3 type
38
=head3 _type
39
40
Returns name of corresponding DBIC resultset
39
41
40
=cut
42
=cut
41
43
Lines 43-48 sub _type { Link Here
43
    return 'SavedSql';
45
    return 'SavedSql';
44
}
46
}
45
47
48
=head3 object_class
49
50
Returns name of corresponding Koha Object Class
51
52
=cut
53
46
sub object_class {
54
sub object_class {
47
    return 'Koha::Report';
55
    return 'Koha::Report';
48
}
56
}
(-)a/t/db_dependent/Koha/Reports.t (-3 lines)
Lines 1-7 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
# Copyright 2015 Koha Development team
4
#
5
# This file is part of Koha
3
# This file is part of Koha
6
#
4
#
7
# Koha is free software; you can redistribute it and/or modify it
5
# Koha is free software; you can redistribute it and/or modify it
8
- 

Return to bug 20052