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

(-)a/Koha/Account/DebitType.pm (-1 / +1 lines)
Lines 25-31 use Koha::Database; Link Here
25
use Koha::Exceptions;
25
use Koha::Exceptions;
26
26
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
28
push @Koha::Account::DebitType::ISA, qw(Koha::Object Koha::Object::Limit::Library);
28
@Koha::Account::DebitType::ISA = qw(Koha::Object Koha::Object::Limit::Library);
29
29
30
=head1 NAME
30
=head1 NAME
31
31
(-)a/Koha/AuthorisedValue.pm (-1 / +1 lines)
Lines 25-31 use Koha::Object; Link Here
25
use Koha::Object::Limit::Library;
25
use Koha::Object::Limit::Library;
26
26
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
28
push @Koha::AuthorisedValue::ISA, qw(Koha::Object Koha::Object::Limit::Library);
28
@Koha::AuthorisedValue::ISA = qw(Koha::Object Koha::Object::Limit::Library);
29
29
30
my $cache = Koha::Caches->get_instance();
30
my $cache = Koha::Caches->get_instance();
31
31
(-)a/Koha/Patron/Attribute/Type.pm (-1 / +1 lines)
Lines 24-30 use Koha::Database; Link Here
24
use Koha::Exceptions::Patron::Attribute::Type;
24
use Koha::Exceptions::Patron::Attribute::Type;
25
25
26
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
26
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
27
push @Koha::Patron::Attribute::Type::ISA, qw(Koha::Object Koha::Object::Limit::Library);
27
@Koha::Patron::Attribute::Type::ISA = qw(Koha::Object Koha::Object::Limit::Library);
28
28
29
=head1 NAME
29
=head1 NAME
30
30
(-)a/Koha/Patron/Category.pm (-2 / +1 lines)
Lines 25-31 use Koha::Database; Link Here
25
use Koha::DateUtils qw( dt_from_string );
25
use Koha::DateUtils qw( dt_from_string );
26
26
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
28
push @Koha::Patron::Category::ISA, qw(Koha::Object Koha::Object::Limit::Library);
28
@Koha::Patron::Category::ISA = qw(Koha::Object Koha::Object::Limit::Library);
29
29
30
=head1 NAME
30
=head1 NAME
31
31
32
- 

Return to bug 35959