Bluz\Proxy\HttpCacheControl::initInstance PHP Метод

initInstance() защищенный статический Метод

Init instance
protected static initInstance ( ) : CacheControl | Bluz\Common\Nil
Результат Bluz\Http\CacheControl | Bluz\Common\Nil
    protected static function initInstance()
    {
        if ('cli' === PHP_SAPI) {
            return new Nil();
        } else {
            return new Instance(Response::getInstance());
        }
    }
HttpCacheControl