public function ViewExecutable::setResponse in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::setResponse()
Sets the used response object of the view.
Parameters
\Symfony\Component\HttpFoundation\Response $response: The response object which should be set.
File
- core/
modules/ views/ src/ ViewExecutable.php, line 1781
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\viewsCode
public function setResponse(Response $response) {
$this->response = $response;
}