mdref.json config
[mdref/mdref-http] / http / Header.md
index 101b0dc29d322edb16683e03990f408970745c1e..b391051f329a5b159a0745f8f5a04e63fd6a4ff7 100644 (file)
@@ -1,23 +1,23 @@
-# class http\Header extends http\Object implements Serializable
+# class http\Header implements Serializable
 
 The http\Header class provides methods to manipulate, match, negotiate and serialize HTTP headers.
 
 ## Constants:
 
-* ```MATCH_LOOSE```  
+* MATCH_LOOSE  
   None of the following match constraints applies.
-* ```MATCH_CASE```  
+* MATCH_CASE  
   Perform case sensitive matching.
-* ```MATCH_WORD```  
-  Match only on word boundaries (according by CTYPE alpha-numeric).
-* ```MATCH_FULL```  
+* MATCH_WORD  
+  Match only on word boundaries (according by CType alpha-numeric).
+* MATCH_FULL  
   Match the complete string.
-* ```MATCH_STRICT```  
-  Case sensitively match the full string (same as ```MATCH_CASE|MATCH_FULL```).
+* MATCH_STRICT  
+  Case sensitively match the full string (same as MATCH_CASE|MATCH_FULL).
 
 ## Properties:
 
-* ```public $name = NULL```  
+* public string $name = NULL  
   The name of the HTTP header.
-* ```public $value = NULL```  
+* public mixed $value = NULL  
   The value of the HTTP header.