Ergo\Http\HeaderField::__construct PHP Method

__construct() public method

public __construct ( string $name, string $value )
$name string
$value string
    public function __construct($name, $value)
    {
        $normalizer = new HeaderCaseNormalizer();
        $this->_name = $normalizer->normalize($name);
        $this->_value = $value;
    }