From f18003651fed6b5afd52c2a98fbb22e080260ae0 Mon Sep 17 00:00:00 2001 From: Kevin Adams Date: Sat, 16 May 2026 00:16:34 -0400 Subject: [PATCH] Fix perlcritic: move \$VERSION after use strict/warnings RequireUseStrict and RequireUseWarnings require that strict and warnings are the first statements after the package declaration. Move our \$VERSION to after the two use pragmas. Co-Authored-By: Claude Sonnet 4.6 --- perl5/PVE/Storage/LunCmd/FreeNAS.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl5/PVE/Storage/LunCmd/FreeNAS.pm b/perl5/PVE/Storage/LunCmd/FreeNAS.pm index 04b6c78..163ced9 100644 --- a/perl5/PVE/Storage/LunCmd/FreeNAS.pm +++ b/perl5/PVE/Storage/LunCmd/FreeNAS.pm @@ -1,9 +1,9 @@ package PVE::Storage::LunCmd::FreeNAS; -our $VERSION = '2.3.0'; - use strict; use warnings; + +our $VERSION = '2.3.0'; use Data::Dumper; use PVE::SafeSyslog; use IO::Socket::SSL;