leaving this argument optional doesn't make anything better
authorMichael Wallner <mike@php.net>
Tue, 30 Sep 2014 12:44:49 +0000 (14:44 +0200)
committerMichael Wallner <mike@php.net>
Tue, 30 Sep 2014 12:44:49 +0000 (14:44 +0200)
pq/Converter/convertFromString.md
pq/Converter/convertToString.md

index e7bc70148ca60d3f9d5459f51b6f3d8fd3d1c6f4..1afbec9edadcbd33fbf0454dd5111a4813e28369 100644 (file)
@@ -1,4 +1,4 @@
-# mixed pq\Converter::convertFromString(string $data[, int $type = NULL)
+# mixed pq\Converter::convertFromString(string $data, int $type)
 
 Convert a string received from the PostgreSQL server back to a PHP type.
 
@@ -6,8 +6,8 @@ Convert a string received from the PostgreSQL server back to a PHP type.
 
 * string $data  
   String data received from the server.
-* Optional in $type = NULL  
-  The type of the data. Irrelevant for single-type converters.
+* int $type    
+  The type OID of the data. Irrelevant for single-type converters.
 
 ## Returns:
 
index 5328a2ee8f00f16fe5b67231d09ff10ddc418201..cfe31c03bb63e8741a4a39dfbd0cfe676fbd28ef 100644 (file)
@@ -1,4 +1,4 @@
-# string pq\Converter::convertToString(mixed $value[, int $type = NULL])
+# string pq\Converter::convertToString(mixed $value, int $type)
 
 Convert a value to a string for use in a query.
 
@@ -6,8 +6,8 @@ Convert a value to a string for use in a query.
 
 * mixed $value  
   The PHP value which should be converted to a string.
-* Optional int $type = NULL  
-  The type the converter should handle. Irrelevant for singly-type converters.
+* int $type  
+  The type OID the converter should handle. Irrelevant for singly-type converters.
 
 ## Returns: