added synopsis to Engine subclassed and documented a couple of methods to make podcov...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine.pm
index 2cbc0f4..7b07f5d 100644 (file)
@@ -163,7 +163,7 @@ sub set_action {
         $action = "!$action";
     }
     else { 
-       $c->actions->{plain}->{$action} = [ $namespace, $code ] 
+       $c->actions->{plain}->{$action} = [ $namespace, $code ];
     }
 
     my $reverse = $prefix ? "$action ($prefix)" : $action;
@@ -601,7 +601,7 @@ sub prepare_action {
       if ( $c->debug && @args );
 }
 
-=item $c->prepare_connection;
+=item $c->prepare_connection
 
 Prepare connection.
 
@@ -609,7 +609,7 @@ Prepare connection.
 
 sub prepare_connection { }
 
-=item $c->prepare_cookies;
+=item $c->prepare_cookies
 
 Prepare cookies.
 
@@ -689,6 +689,14 @@ sub process {
     return $status;
 }
 
+=item $c->run
+
+Starts the engine.
+
+=cut
+
+sub run { }
+
 =item $c->request
 
 =item $c->req