Browse Source

Fixed doc blocks

Jose Lorenzo Rodriguez 11 years ago
parent
commit
d4c9d96322
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Collection/Iterator/BufferedIterator.php

+ 2 - 2
src/Collection/Iterator/BufferedIterator.php

@@ -80,7 +80,7 @@ class BufferedIterator extends Collection {
 /**
  * Returns the current key in the iterator
  *
- * @return array|object
+ * @return mixed
  */
 	public function key() {
 		return $this->_key;
@@ -89,7 +89,7 @@ class BufferedIterator extends Collection {
 /**
  * Returns the current record in the iterator
  *
- * @return array|object
+ * @return mixed
  */
 	public function current() {
 		return $this->_current;