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 <noreply@anthropic.com>
This commit is contained in:
Kevin Adams 2026-05-16 00:16:34 -04:00
parent 7fa3ff9c91
commit f18003651f
1 changed files with 2 additions and 2 deletions

View File

@ -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;