Webiny\Component\Http\Request\Headers::__construct PHP Method

__construct() public method

Constructor.
public __construct ( )
    public function __construct()
    {
        if (function_exists('getallheaders')) {
            $headers = getallheaders();
        } else {
            $headers = $this->getAllHeaders();
        }
        $this->headerBag = $this->arr($headers);
    }