when I use the Phalcon\Flash\Direct to show a success message, just like
$this->flash->success("The post was correctly saved!");
return $this->dispatcher->forward(array("action" => "index"));
my question is, how to forward to the index action automatically after a specific time, for example in 2 seconds?
thanks