Redirection Phalcon et transfert

Dois-je comprends bien qu'après avoir fait $this->dispatcher->forward() ou $this->response->redirect() j'ai besoin de vérifier manuellement que le reste du code n'est pas exécuté? Comme ci-dessous, ou ai-je raté quelque chose?

public function signinAction()
{
    if ($this->isUserAuthenticated())
    {
        $this->response->redirect('/profile');
        return;
    }

    //Stuff if he isn't authenticated…
}

source d'informationauteur Ian Bytchek