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:
parent
7fa3ff9c91
commit
f18003651f
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue