public function HeaderBag::removeCacheControlDirective

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/HeaderBag.php, line 260

Class

HeaderBag
HeaderBag is a container for HTTP headers.

Namespace

Symfony\Component\HttpFoundation

Code

public function removeCacheControlDirective($key) {
  unset($this->cacheControl[$key]);
  $this
    ->set('Cache-Control', $this
    ->getCacheControlHeader());
}