Skip to content

Commit

Permalink
WI-29747 Bundled PHP documentation incomplete for PDO / PDOStatement
Browse files Browse the repository at this point in the history
added missing parameters to PDOStatement.setFetchMode()
  • Loading branch information
andrey-sokolov committed Dec 28, 2017
1 parent a7b4fdd commit d1e7564
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions PDO/PDO.php
Original file line number Diff line number Diff line change
Expand Up @@ -1418,9 +1418,13 @@ public function getColumnMeta ($column) {}
* @param int $mode <p>
* The fetch mode must be one of the PDO::FETCH_* constants.
* </p>
* @return bool 1 on success or <b>FALSE</b> on failure.
* @param string|object $classNameObject [optional] <p>
* Class name or object
* </p>
* @param array $ctorarfg [optional] <p> Constructor arguments. </p>
* @return bool 1 on success or <b>FALSE</b> on failure.
*/
public function setFetchMode ($mode) {}
public function setFetchMode ($mode, $classNameObject, array $ctorarfg) {}

/**
* (PHP 5 &gt;= 5.1.0, PECL pdo &gt;= 0.2.0)<br/>
Expand Down

0 comments on commit d1e7564

Please sign in to comment.