response instanceof Response) { $headers = $this->response->getHeaders(); $headers->addHeaderLine('Content-Type', 'application/json'); } return $data; } /** * Set the response object * * @param Response $response * @return Json */ public function setResponse(Response $response) { $this->response = $response; return $this; } }