Skip to content

Commit

Permalink
docblock fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed May 1, 2016
1 parent 5c2ec2c commit 994a8b5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ExtendedPdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -553,11 +553,11 @@ public function fetchOne($statement, array $values = array())
*
* @param string $statement The SQL statement to prepare and execute.
*
* @param array $values Values to bind to the query.
*
* @param callable $callable A callable to be applied to each of the rows
* to be returned.
*
* @param array $values Values to bind to the query.
*
* @return array
*
*/
Expand Down
4 changes: 2 additions & 2 deletions src/ExtendedPdoInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ public function fetchOne($statement, array $values = array());
*
* @param string $statement The SQL statement to prepare and execute.
*
* @param array $values Values to bind to the query.
*
* @param callable $callable A callable to be applied to each of the rows
* to be returned.
*
* @param array $values Values to bind to the query.
*
* @return array
*
*/
Expand Down
7 changes: 7 additions & 0 deletions src/Iterator/AbstractIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
use Iterator;
use PDOStatement;

/**
*
* A base class for iterators.
*
* @package Aura.Sql
*
*/
abstract class AbstractIterator implements Iterator
{
/**
Expand Down

0 comments on commit 994a8b5

Please sign in to comment.