mediaType = $mediaType; } public function getMediaType(): MediaType { return $this->mediaType; } public static function parse(HttpHeader $header): ContentTypeHeader { return new ContentTypeHeader(MediaType::parse($header->getFirstLine())); } }