Bluz\Http\CacheControl::setPublic PHP 메소드

setPublic() 공개 메소드

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