summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum.pm
diff options
context:
space:
mode:
authorPerl Tidy <perltidy@bugzilla.org>2018-12-05 21:38:52 +0100
committerDylan William Hardison <dylan@hardison.net>2018-12-05 23:49:08 +0100
commit8ec8da0491ad89604700b3e29a227966f6d84ba1 (patch)
tree9d270f173330ca19700e0ba9f2ee931300646de1 /Bugzilla/Quantum.pm
parenta7bb5a65b71644d9efce5fed783ed545b9336548 (diff)
downloadbugzilla-8ec8da0491ad89604700b3e29a227966f6d84ba1.tar.gz
bugzilla-8ec8da0491ad89604700b3e29a227966f6d84ba1.tar.xz
no bug - reformat all the code using the new perltidy rules
Diffstat (limited to 'Bugzilla/Quantum.pm')
-rw-r--r--Bugzilla/Quantum.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm
index 4fddb8da9..1638f8c9a 100644
--- a/Bugzilla/Quantum.pm
+++ b/Bugzilla/Quantum.pm
@@ -96,8 +96,7 @@ sub setup_routes {
my $r = $self->routes;
Bugzilla::Quantum::CGI->load_all($r);
- Bugzilla::Quantum::CGI->load_one('bzapi_cgi',
- 'extensions/BzAPI/bin/rest.cgi');
+ Bugzilla::Quantum::CGI->load_one('bzapi_cgi', 'extensions/BzAPI/bin/rest.cgi');
$r->get('/home')->to('Home#index');
$r->any('/')->to('CGI#index_cgi');
@@ -118,8 +117,8 @@ sub setup_routes {
$r->any('/bzapi/*PATH_INFO')->to('CGI#bzapi_cgi');
$r->static_file('/__lbheartbeat__');
- $r->static_file('/__version__' =>
- {file => 'version.json', content_type => 'application/json'});
+ $r->static_file(
+ '/__version__' => {file => 'version.json', content_type => 'application/json'});
$r->static_file('/version.json', {content_type => 'application/json'});
$r->page('/review', 'splinter.html');