$this->cspDisabled = true;
} /**
* Cleanup temporary headers and updates Content-Security-Policy headers.
*
* @return array Nonces used by the bundle in Content-Security-Policy header
*/
public function updateResponseHeaders(Request
$request, Response
$response): array
{ if ($this->cspDisabled
) { $this->
removeCspHeaders($response);
return [];
} $nonces =
$this->
getNonces($request,
$response);
$this->
cleanHeaders($response);
$this->
updateCspHeaders($response,
$nonces);
return $nonces;
}