If I prepare a response in my controller like so:
$response = new Response();
$response->setContent($this->render('mytemplate.html.twig');
$response->send();
Rather than using:
return $this->return('mytemplate.html.twig');
Then I haven't actually returned anything... what should I do after $response->send()? Should I just return true?