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

(-)a/Koha/Object/Library/Limit.pm (-3 / +3 lines)
Lines 1-4 Link Here
1
package Koha::Object::Library::Limit;
1
package Koha::Object::Limit::Library;
2
2
3
# This file is part of Koha.
3
# This file is part of Koha.
4
#
4
#
Lines 24-34 use Try::Tiny; Link Here
24
24
25
=head1 NAME
25
=head1 NAME
26
26
27
Koha::Object::Library::Limit - Generic library limit handling class
27
Koha::Object::Limit::Library - Generic library limit handling class
28
28
29
=head1 SYNOPSIS
29
=head1 SYNOPSIS
30
30
31
    use base qw(Koha::Object Koha::Object::Library::Limit);
31
    use base qw(Koha::Object Koha::Object::Limit::Library);
32
    my $object = Koha::Object->new({ property1 => $property1, property2 => $property2, etc... } );
32
    my $object = Koha::Object->new({ property1 => $property1, property2 => $property2, etc... } );
33
33
34
=head1 DESCRIPTION
34
=head1 DESCRIPTION
(-)a/Koha/Patron/Attribute/Type.pm (-2 / +1 lines)
Lines 19-25 use Modern::Perl; Link Here
19
19
20
use Koha::Database;
20
use Koha::Database;
21
21
22
use base qw(Koha::Object Koha::Object::Library::Limit);
22
use base qw(Koha::Object Koha::Object::Limit::Library);
23
23
24
=head1 NAME
24
=head1 NAME
25
25
26
- 

Return to bug 17755