rangeUnit = trim($value); return $header; } public function getFieldName() { return 'Accept-Ranges'; } public function getFieldValue() { return $this->getRangeUnit(); } public function setRangeUnit($rangeUnit) { $this->rangeUnit = $rangeUnit; return $this; } public function getRangeUnit() { return $this->rangeUnit; } public function toString() { return 'Accept-Ranges: ' . $this->getFieldValue(); } }