Sort list of allowed methods. RT#81825
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / REST.pm
index 6802f16..cad0fe8 100644 (file)
@@ -158,7 +158,7 @@ sub get_allowed_methods {
     };
     $methods->{'HEAD'} = 1 if $methods->{'GET'};
     delete $methods->{'not_implemented'};
-    return keys %$methods;
+    return sort keys %$methods;
 };
 
 sub _return_options {