Bug 21395: Make perlcritic happy
[koha.git] / C4 / Patroncards.pm
blob98fb59c28b0748d2da6092359c85a7449f399590
1 package C4::Patroncards;
3 use Modern::Perl;
5 BEGIN {
6 use vars qw(@EXPORT @ISA);
7 @ISA = qw(Exporter);
8 our @EXPORT = qw(unpack_UTF8
9 text_alignment
10 leading
11 box
12 get_borrower_attributes
13 put_image
14 get_image
15 rm_image
17 use C4::Patroncards::Batch;
18 use C4::Patroncards::Layout;
19 use C4::Patroncards::Lib;
20 use C4::Patroncards::Patroncard;
21 use C4::Patroncards::Profile;
22 use C4::Patroncards::Template;