From 8ab210c15d816e9b3e15583d10a5d2614fb99995 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 Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy --- Koha/Object.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Object.pm b/Koha/Object.pm index 190b57cde9..97ae3494fd 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.30.2