Bluz\Http\CacheControl::setPublic PHP Méthode

setPublic() public méthode

It makes the response eligible for serving other clients.
public setPublic ( ) : void
Résultat void
    public function setPublic()
    {
        $this->doDeleteContainer('private');
        $this->doSetContainer('public', true);
        $this->updateCacheControlHeader();
    }