some missing exception bits
authorMichael Wallner <mike@php.net>
Mon, 6 Oct 2014 07:36:04 +0000 (09:36 +0200)
committerMichael Wallner <mike@php.net>
Mon, 6 Oct 2014 07:36:04 +0000 (09:36 +0200)
pq/COPY/__construct.md
pq/COPY/get.md
pq/Connection/on.md
pq/Cursor/close.md
pq/Result/count.md
pq/Result/desc.md
pq/Result/map.md

index 356dd6ee1f93b632c4a1ab4d4fafb2efddc500cd..b431eff60d549f40232ddaf7cb36545379e50166 100644 (file)
@@ -12,3 +12,9 @@ Start a COPY operation.
   Data direction (pq\COPY::FROM_STDIN or pq\COPY::TO_STDOUT).
 * Optional string $options = NULL  
   Any COPY options (see the [official PostgreSQL documentaion](http://www.postgresql.org/docs/current/static/sql-copy.html) for details.
   Data direction (pq\COPY::FROM_STDIN or pq\COPY::TO_STDOUT).
 * Optional string $options = NULL  
   Any COPY options (see the [official PostgreSQL documentaion](http://www.postgresql.org/docs/current/static/sql-copy.html) for details.
+
+## Throws:
+
+* pq\Exception\InvalidArgumentException
+* pq\Exception\BadMethodCallException
+* pq\Exception\RuntimeException
index 385203945b46c126b06ad2a8bd84acac63eed7ae..4e36d049a8d0306a2de74fc76bfec37b3cd4d311 100644 (file)
@@ -14,5 +14,5 @@ Receive data from the server during pq\Result::COPY_OUT state.
 ## Throws:
 
 * pq\Exception\InvalidArgumentException
 ## Throws:
 
 * pq\Exception\InvalidArgumentException
-* pq\Exception\BadMethodCallExceptin
+* pq\Exception\BadMethodCallException
 * pq\Exception\RuntimeException
 * pq\Exception\RuntimeException
index cda9738a558aa8c4630ab379ba3d2238a811c8ee..e12aae41061c65f52f7f78cc65ddc32f8f4a53dd 100644 (file)
@@ -16,6 +16,7 @@ Listen for an event.
 ## Throws:
 
 * pq\Exception\InvalidArgumentException
 ## Throws:
 
 * pq\Exception\InvalidArgumentException
+* pq\Exception\BadMethodCallException
 
 ## Example:
 
 
 ## Example:
 
index 6566120a910536d3af870f1a12f09220ca0f3002..825a551bcfe2fed224968b7d06491373b04782d3 100644 (file)
@@ -9,3 +9,6 @@ None.
 
 ## Throws:
 
 
 ## Throws:
 
+* pq\Exception\InvalidArgumentException
+* pq\Exception\BadMethodCallException
+* pq\Exception\RuntimeException
index a6f25a9950c290c918c99a0a282721350df04c39..59fd4255f9adf1439b6b6b052ae9b9fd18f1bb44 100644 (file)
@@ -12,5 +12,7 @@ None.
 
 ## Throws:
 
 
 ## Throws:
 
+* pq\Exception\InvalidArgumentException
 * pq\Exception\BadMethodCallException
 
 * pq\Exception\BadMethodCallException
 
+
index 3aa81b214a669f5456ad4d38ae92a7718b0bb32d..d80586ecd058292548c085e73f914292f0d262f8 100644 (file)
@@ -15,9 +15,9 @@ None.
 
 ## Throws:
 
 
 ## Throws:
 
+* pq\Exception\InvalidArgumentException
 * pq\Exception\BadMethodCallException
 
 * pq\Exception\BadMethodCallException
 
-
 ## Example:
 
        <?php
 ## Example:
 
        <?php
index a2b59465d541cd9c98de74b20fe23dcb70b9451c..8cfc530d9dcc02ffd730771d56c02b45423980a6 100644 (file)
@@ -13,6 +13,12 @@ Fetch the complete result set as a simple map, a *multi dimensional array*, each
 
 * array, the mapped columns.
 
 
 * array, the mapped columns.
 
+## Throws:
+
+* pq\Exception\InvalidArgumentException
+* pq\Exception\BadMethodCallException
+* pq\Exception\RuntimeException
+
 ## Example:
 
        <?php
 ## Example:
 
        <?php