From: Florian Ragwitz Date: Thu, 7 Jun 2012 23:03:28 +0000 (-0400) Subject: use style; X-Git-Tag: 5.90013~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=aea897b2495d079f3849eb30cd3dc7c89b31f742;hp=4963dba2fd70c67c6ff5a0796742bfc4d1cb7961 use style; --- diff --git a/lib/Catalyst/Controller.pm b/lib/Catalyst/Controller.pm index a6bba64..fb6df0d 100644 --- a/lib/Catalyst/Controller.pm +++ b/lib/Catalyst/Controller.pm @@ -13,28 +13,25 @@ use Catalyst::Utils; with 'Catalyst::Component::ApplicationAttribute'; -has path_prefix => - ( - is => 'rw', - isa => 'Str', - init_arg => 'path', - predicate => 'has_path_prefix', - ); +has path_prefix => ( + is => 'rw', + isa => 'Str', + init_arg => 'path', + predicate => 'has_path_prefix', +); -has action_namespace => - ( - is => 'rw', - isa => 'Str', - init_arg => 'namespace', - predicate => 'has_action_namespace', - ); +has action_namespace => ( + is => 'rw', + isa => 'Str', + init_arg => 'namespace', + predicate => 'has_action_namespace', +); -has actions => - ( - accessor => '_controller_actions', - isa => 'HashRef', - init_arg => undef, - ); +has actions => ( + accessor => '_controller_actions', + isa => 'HashRef', + init_arg => undef, +); has action_args => (is => 'ro');