Marks the response as "immutable".
@final
$this
public function setImmutable(bool $immutable = true) : static { if ($immutable) { $this->headers ->addCacheControlDirective('immutable'); } else { $this->headers ->removeCacheControlDirective('immutable'); } return $this; }