@@ -, +, @@ ::Limit::Library --- Koha/Object/{Library/Limit.pm => Limit/Library.pm} | 6 +++--- Koha/Patron/Attribute/Type.pm | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename Koha/Object/{Library/Limit.pm => Limit/Library.pm} (95%) --- a/Koha/Object/Library/Limit.pm +++ a/Koha/Object/Library/Limit.pm @@ -1,4 +1,4 @@ -package Koha::Object::Library::Limit; +package Koha::Object::Limit::Library; # This file is part of Koha. # @@ -24,11 +24,11 @@ use Try::Tiny; =head1 NAME -Koha::Object::Library::Limit - Generic library limit handling class +Koha::Object::Limit::Library - Generic library limit handling class =head1 SYNOPSIS - use base qw(Koha::Object Koha::Object::Library::Limit); + use base qw(Koha::Object Koha::Object::Limit::Library); my $object = Koha::Object->new({ property1 => $property1, property2 => $property2, etc... } ); =head1 DESCRIPTION --- a/Koha/Patron/Attribute/Type.pm +++ a/Koha/Patron/Attribute/Type.pm @@ -19,7 +19,7 @@ use Modern::Perl; use Koha::Database; -use base qw(Koha::Object Koha::Object::Library::Limit); +use base qw(Koha::Object Koha::Object::Limit::Library); =head1 NAME --