/**
* Marks the response as "private".
*
* It makes the response ineligible for serving other clients.
*
* @return $this
*
* @final
*/
public function setPrivate():
static { $this->headers->
removeCacheControlDirective('public'
);
$this->headers->
addCacheControlDirective('private'
);
return $this;
} /**
* Marks the response as "public".
*
* It makes the response eligible for serving other clients.
*
* @return $this
*
* @final
*/