From b2fc242be0bc76d526c06bedd112941390cfb0b4 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 19 Aug 2020 12:38:37 -0400 Subject: [PATCH] Bug 24857: Fix POD --- Koha/Biblio/Volume/Item.pm | 2 -- Koha/Biblio/Volume/Items.pm | 2 -- Koha/Biblio/Volumes.pm | 2 -- Koha/Schema/Result/Volume.pm | 8 ++++++++ Koha/Schema/Result/VolumeItem.pm | 9 +++++++++ 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Koha/Biblio/Volume/Item.pm b/Koha/Biblio/Volume/Item.pm index 618d08ff70..9698f8fa65 100644 --- a/Koha/Biblio/Volume/Item.pm +++ b/Koha/Biblio/Volume/Item.pm @@ -25,8 +25,6 @@ Koha::Volume::Item - Koha Volume Item Object class =head1 API -=head2 Class methods - =head2 Internal methods =head3 _type diff --git a/Koha/Biblio/Volume/Items.pm b/Koha/Biblio/Volume/Items.pm index 622ea26e21..dc0ecf814d 100644 --- a/Koha/Biblio/Volume/Items.pm +++ b/Koha/Biblio/Volume/Items.pm @@ -27,8 +27,6 @@ Koha::Biblio::Volume::Items - Koha Volume Items Object set class =head1 API -=head2 Class methods - =head2 Internal methods =head3 _type diff --git a/Koha/Biblio/Volumes.pm b/Koha/Biblio/Volumes.pm index 0b26676456..0729930fc5 100644 --- a/Koha/Biblio/Volumes.pm +++ b/Koha/Biblio/Volumes.pm @@ -27,8 +27,6 @@ Koha::Biblio::Volumes - Koha Volume Object set class =head1 API -=head2 Class methods - =head2 Internal methods =head3 _type diff --git a/Koha/Schema/Result/Volume.pm b/Koha/Schema/Result/Volume.pm index d7a4a35824..2c4417288f 100644 --- a/Koha/Schema/Result/Volume.pm +++ b/Koha/Schema/Result/Volume.pm @@ -139,10 +139,18 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-15 17:43:22 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0synkJlBPpaIOLrX2KUKiA +=head2 koha_objects_class + +=cut + sub koha_objects_class { 'Koha::Biblio::Volumes'; } +=head2 koha_object_class + +=cut + sub koha_object_class { 'Koha::Biblio::Volume'; } diff --git a/Koha/Schema/Result/VolumeItem.pm b/Koha/Schema/Result/VolumeItem.pm index 835532daf0..44c03ba71c 100644 --- a/Koha/Schema/Result/VolumeItem.pm +++ b/Koha/Schema/Result/VolumeItem.pm @@ -128,9 +128,18 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-15 17:43:22 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jocpH15LNMhDBp6EbZJNsg +=head2 koha_object_class + +=cut + sub koha_object_class { 'Koha::Biblio::Volume::Item'; } + +=head2 koha_objects_class + +=cut + sub koha_objects_class { 'Koha::Biblio::Volume::Items'; } -- 2.24.1 (Apple Git-126)