value = $value; } public function getFieldName() { return 'Date'; } public function getFieldValue($format = HeaderInterface::FORMAT_RAW) { return $this->value; } public function setEncoding($encoding) { // This header must be always in US-ASCII return $this; } public function getEncoding() { return 'ASCII'; } public function toString() { return 'Date: ' . $this->getFieldValue(); } }