@@ -, +, @@ --- Koha/Account/DebitType.pm | 2 +- Koha/AuthorisedValue.pm | 2 +- Koha/Patron/Attribute/Type.pm | 2 +- Koha/Patron/Category.pm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) --- a/Koha/Account/DebitType.pm +++ a/Koha/Account/DebitType.pm @@ -25,7 +25,7 @@ use Koha::Database; use Koha::Exceptions; # Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line -push @Koha::Account::DebitType::ISA, qw(Koha::Object Koha::Object::Limit::Library); +@Koha::Account::DebitType::ISA = qw(Koha::Object Koha::Object::Limit::Library); =head1 NAME --- a/Koha/AuthorisedValue.pm +++ a/Koha/AuthorisedValue.pm @@ -25,7 +25,7 @@ use Koha::Object; use Koha::Object::Limit::Library; # Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line -push @Koha::AuthorisedValue::ISA, qw(Koha::Object Koha::Object::Limit::Library); +@Koha::AuthorisedValue::ISA = qw(Koha::Object Koha::Object::Limit::Library); my $cache = Koha::Caches->get_instance(); --- a/Koha/Patron/Attribute/Type.pm +++ a/Koha/Patron/Attribute/Type.pm @@ -24,7 +24,7 @@ use Koha::Database; use Koha::Exceptions::Patron::Attribute::Type; # Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line -push @Koha::Patron::Attribute::Type::ISA, qw(Koha::Object Koha::Object::Limit::Library); +@Koha::Patron::Attribute::Type::ISA = qw(Koha::Object Koha::Object::Limit::Library); =head1 NAME --- a/Koha/Patron/Category.pm +++ a/Koha/Patron/Category.pm @@ -25,7 +25,7 @@ use Koha::Database; use Koha::DateUtils qw( dt_from_string ); # Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line -push @Koha::Patron::Category::ISA, qw(Koha::Object Koha::Object::Limit::Library); +@Koha::Patron::Category::ISA = qw(Koha::Object Koha::Object::Limit::Library); =head1 NAME --