From 7827bf2252440efca3df71191555f8db73d8aae6 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 30388d165d..ea5d446dba 100644 --- a/Koha/Schema/Result/Volume.pm +++ b/Koha/Schema/Result/Volume.pm @@ -133,10 +133,18 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-04 15:22:18 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cXvLM2TgY18pxE2ZJBMouw +=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 3ce549209b..c07fa97167 100644 --- a/Koha/Schema/Result/VolumeItem.pm +++ b/Koha/Schema/Result/VolumeItem.pm @@ -112,9 +112,18 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-03 18:25:20 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i6YHB4Jq+79kVVYmuurzIQ +=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)