Ran perltidy
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Controller / REST.pm
index 8b3a064..5e6c359 100644 (file)
@@ -8,17 +8,19 @@ __PACKAGE__->mk_accessors(qw(serialize));
 
 __PACKAGE__->config(
     serialize => {
-        'default' => 'YAML',
+        'default'   => 'YAML',
         'stash_key' => 'rest',
-        'map' => {
-            'text/x-yaml' => 'YAML',
+        'map'       => {
+            'text/x-yaml'        => 'YAML',
             'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ],
         },
     }
 );
 
-sub begin :ActionClass('Deserialize') {}
+sub begin : ActionClass('Deserialize') {
+}
 
-sub end :ActionClass('Serialize') {}
+sub end : ActionClass('Serialize') {
+}
 
 1;