diff --git a/src/ExtendedPdo.php b/src/ExtendedPdo.php index 7bcc269a..833dc71b 100644 --- a/src/ExtendedPdo.php +++ b/src/ExtendedPdo.php @@ -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 * */ diff --git a/src/ExtendedPdoInterface.php b/src/ExtendedPdoInterface.php index ff3eb839..da9918ad 100644 --- a/src/ExtendedPdoInterface.php +++ b/src/ExtendedPdoInterface.php @@ -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 * */ diff --git a/src/Iterator/AbstractIterator.php b/src/Iterator/AbstractIterator.php index aceb1dd0..895fd4e7 100644 --- a/src/Iterator/AbstractIterator.php +++ b/src/Iterator/AbstractIterator.php @@ -11,6 +11,13 @@ use Iterator; use PDOStatement; +/** + * + * A base class for iterators. + * + * @package Aura.Sql + * + */ abstract class AbstractIterator implements Iterator { /**