reformat a bit
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Chained.pm
index e29e5b5..310b772 100644 (file)
@@ -286,9 +286,15 @@ sub recurse_match {
                 #    The current best action might also be Args(0),
                 #    but we couldn't chose between then anyway so we'll take the last seen
 
-                if (!$best_action                       ||
+                if (
+                    !$best_action                       ||
                     @parts < @{$best_action->{parts}}   ||
-                    (!@parts && defined($args_attr) && $args_attr eq "0")){
+                    (
+                        !@parts && 
+                        defined($args_attr) && 
+                        $args_attr eq "0"
+                    )
+                ){
                     $best_action = {
                         actions => [ $action ],
                         captures=> [],