From 6d9105b420abc0e55508f14f1c3118be2769e7f5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 18 Jul 2023 10:22:59 +0200 Subject: [PATCH] Bug 33745: Tell perlcritic we know what we are doing --- Koha/Object.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Object.pm b/Koha/Object.pm index 190b57cde93..97ae3494fd2 100644 --- a/Koha/Object.pm +++ b/Koha/Object.pm @@ -918,7 +918,7 @@ sub AUTOLOAD { return $self->_result()->get_column($method); } }; - no strict 'refs'; + no strict 'refs'; ## no critic (strict) *{$AUTOLOAD} = $accessor; return $accessor->( $self, @_ ); } -- 2.25.1