As far as I know there's no difference. It doesn't interrupt affect much either way. Even if you want to specify required parameters in your action. E.g.
/**
* @Route("/edit/{id}", name="edit")
*/
public function editAction(Request $request, $id)
{
// Both $request and $id are available
}