Symfony\Component\HttpFoundation\ResponseHeaderBag::__construct PHP Method

__construct() public method

Constructor.
public __construct ( array $headers = [] )
$headers array An array of HTTP headers
    public function __construct(array $headers = array())
    {
        parent::__construct($headers);

        if (!isset($this->headers['cache-control'])) {
            $this->set('Cache-Control', '');
        }
    }