summaryrefslogtreecommitdiffstats
path: root/extensions/Example/lib/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/Example/lib/Config.pm')
-rw-r--r--extensions/Example/lib/Config.pm13
1 files changed, 4 insertions, 9 deletions
diff --git a/extensions/Example/lib/Config.pm b/extensions/Example/lib/Config.pm
index fac0046af..360a57510 100644
--- a/extensions/Example/lib/Config.pm
+++ b/extensions/Example/lib/Config.pm
@@ -16,16 +16,11 @@ use Bugzilla::Config::Common;
our $sortkey = 5000;
sub get_param_list {
- my ($class) = @_;
+ my ($class) = @_;
- my @param_list = (
- {
- name => 'example_string',
- type => 't',
- default => 'EXAMPLE',
- },
- );
- return @param_list;
+ my @param_list
+ = ({name => 'example_string', type => 't', default => 'EXAMPLE',},);
+ return @param_list;
}
1;