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

(-)a/Koha/Hold/HoldsQueueItem.pm (-1 / +3 lines)
Lines 1-5 Link Here
1
package Koha::Hold::HoldsQueueItem;
1
package Koha::Hold::HoldsQueueItem;
2
2
3
# Copyright 2023 Koha development team
4
#
3
# This file is part of Koha.
5
# This file is part of Koha.
4
#
6
#
5
# Koha is free software; you can redistribute it and/or modify it
7
# Koha is free software; you can redistribute it and/or modify it
Lines 27-33 use base qw(Koha::Object); Link Here
27
29
28
=head1 NAME
30
=head1 NAME
29
31
30
Koha::Hold::HoldsQueueItem - Koha hold cancellation request Object class
32
Koha::Hold::HoldsQueueItem - Koha holds queue items object class
31
33
32
=head1 API
34
=head1 API
33
35
(-)a/Koha/Hold/HoldsQueueItems.pm (-3 / +3 lines)
Lines 1-5 Link Here
1
package Koha::Hold::HoldsQueueItems;
1
package Koha::Hold::HoldsQueueItems;
2
2
3
# Copyright 2023 Koha development team
4
#
3
# This file is part of Koha.
5
# This file is part of Koha.
4
#
6
#
5
# Koha is free software; you can redistribute it and/or modify it
7
# Koha is free software; you can redistribute it and/or modify it
Lines 17-23 package Koha::Hold::HoldsQueueItems; Link Here
17
19
18
use Modern::Perl;
20
use Modern::Perl;
19
21
20
21
use Koha::Database;
22
use Koha::Database;
22
23
23
use Koha::Hold::HoldsQueueItem;
24
use Koha::Hold::HoldsQueueItem;
Lines 26-32 use base qw(Koha::Objects); Link Here
26
27
27
=head1 NAME
28
=head1 NAME
28
29
29
Koha::Hold::HoldsQueueItems - Koha hold cancellation requests Object set class
30
Koha::Hold::HoldsQueueItems - Koha holds queue items object set class
30
31
31
=head1 API
32
=head1 API
32
33
33
- 

Return to bug 28966