ConverterInterface -> Converter
authorMichael Wallner <mike@php.net>
Thu, 25 Sep 2014 12:04:23 +0000 (14:04 +0200)
committerMichael Wallner <mike@php.net>
Thu, 25 Sep 2014 12:04:23 +0000 (14:04 +0200)
pq/Connection/setConverter.md
pq/Connection/unsetConverter.md

index 0c71405b904a6684077942b24d6188d12e55fe98..8f9dec776f0a059d8201cba981eab3ba6f29584d 100644 (file)
@@ -1,11 +1,11 @@
-# void pq\Connection::setConverter(pq\ConverterInterface $converter)
+# void pq\Connection::setConverter(pq\Converter $converter)
 
 Set a data type converter.
 
 ## Params:
 
-* pq\ConverterInterface $converter  
-  An instance implementing pq\ConverterInterface.
+* pq\Converter $converter  
+  An instance implementing pq\Converter.
 
 ## Throws:
 
@@ -16,7 +16,7 @@ Set a data type converter.
 
        <?php
        
-       class HStoreConverter implements pq\ConverterInterface
+       class HStoreConverter implements pq\Converter
        {
                private $oids;
                
index 9d2fb46d72dc7473e11d4a71121b45569004dcb5..cc66884a8c047bd2d3644f813d0d673c5b49f158 100644 (file)
@@ -1,10 +1,10 @@
-# void pq\Connection::unsetConverter(pq\ConverterInterface $converter)
+# void pq\Connection::unsetConverter(pq\Converter $converter)
 
 Stop applying a data type converter.
 
 ## Params:
 
-* pq\ConverterInterface $converter  
+* pq\Converter $converter  
   A converter previously set with pq\Connection::setConverter().
 
 ## Throws: