Bug 20443: Fix POD
Fixes the following failures: FAIL Koha/Patron/Attribute.pm FAIL pod *** ERROR: empty =head3 in file Koha/Patron/Attribute.pm *** ERROR: empty =head3 in file Koha/Patron/Attribute.pm FAIL Koha/Patron/Attributes.pm FAIL pod *** ERROR: empty =head3 in file Koha/Patron/Attributes.pm FAIL pod coverage POD is missing for merge_with POD is missing for object_class FAIL Koha/Patrons.pm FAIL spelling paramter ==> parameter except the missing pod for object_class, not needed. Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
4bad6ec25f
commit
8bcfd1c211
3 changed files with 4 additions and 4 deletions
|
@ -67,7 +67,7 @@ sub type {
|
|||
return scalar Koha::Patron::Attribute::Types->find( $self->code );
|
||||
}
|
||||
|
||||
=head3
|
||||
=head3 authorised_value
|
||||
|
||||
my $authorised_value = $attribute->authorised_value;
|
||||
|
||||
|
@ -92,7 +92,7 @@ sub authorised_value {
|
|||
return $av->next;
|
||||
}
|
||||
|
||||
=head3
|
||||
=head3 description
|
||||
|
||||
my $description = $patron_attribute->description;
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ sub filter_by_branch_limitations {
|
|||
return $self->search( $or, $join );
|
||||
}
|
||||
|
||||
=head3
|
||||
=head3 merge_with
|
||||
|
||||
$new_attributes is an arrayref of hashrefs
|
||||
|
||||
|
|
|
@ -446,7 +446,7 @@ sub filter_by_attribute_type {
|
|||
|
||||
my $patrons = Koha::Patrons->filter_by_attribute_value($attribute_value);
|
||||
|
||||
Return a Koha::Patrons set with patrong having the attribute value passed in paramter.
|
||||
Return a Koha::Patrons set with patrong having the attribute value passed in parameter.
|
||||
|
||||
=cut
|
||||
|
||||
|
|
Loading…
Reference in a new issue