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

(-)a/Koha/Account/DebitType.pm (-1 / +4 lines)
Lines 19-28 package Koha::Account::DebitType; Link Here
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Koha::Object;
23
use Koha::Object::Limit::Library;
22
use Koha::Database;
24
use Koha::Database;
23
use Koha::Exceptions;
25
use Koha::Exceptions;
24
26
25
use base qw(Koha::Object Koha::Object::Limit::Library);
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);
26
29
27
=head1 NAME
30
=head1 NAME
28
31
(-)a/Koha/AuthorisedValue.pm (-1 / +4 lines)
Lines 21-28 use Modern::Perl; Link Here
21
21
22
use Koha::Caches;
22
use Koha::Caches;
23
use Koha::Database;
23
use Koha::Database;
24
use Koha::Object;
25
use Koha::Object::Limit::Library;
24
26
25
use base qw(Koha::Object Koha::Object::Limit::Library);
27
# Bug 35959 - Avoid Inconsistent hierarchy warn by replacing use base line
28
push @Koha::AuthorisedValue::ISA, qw(Koha::Object Koha::Object::Limit::Library);
26
29
27
my $cache = Koha::Caches->get_instance();
30
my $cache = Koha::Caches->get_instance();
28
31
(-)a/Koha/Patron/Attribute/Type.pm (-1 / +5 lines)
Lines 17-26 package Koha::Patron::Attribute::Type; Link Here
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use Koha::Object;
21
use Koha::Object::Limit::Library;
22
20
use Koha::Database;
23
use Koha::Database;
21
use Koha::Exceptions::Patron::Attribute::Type;
24
use Koha::Exceptions::Patron::Attribute::Type;
22
25
23
use base qw(Koha::Object Koha::Object::Limit::Library);
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);
24
28
25
=head1 NAME
29
=head1 NAME
26
30
(-)a/Koha/Patron/Category.pm (-4 / +4 lines)
Lines 16-30 package Koha::Patron::Category; Link Here
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
20
use List::MoreUtils qw( any );
19
use List::MoreUtils qw( any );
21
20
21
use Koha::Object;
22
use Koha::Object::Limit::Library;
22
use C4::Members::Messaging;
23
use C4::Members::Messaging;
23
24
use Koha::Database;
24
use Koha::Database;
25
use Koha::DateUtils qw( dt_from_string );
25
use Koha::DateUtils qw( dt_from_string );
26
26
27
use base qw(Koha::Object Koha::Object::Limit::Library);
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
29
29
=head1 NAME
30
=head1 NAME
30
31
31
- 

Return to bug 35959