Skip to content

Commit

Permalink
Removed type-o lower case.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Ritter committed Mar 31, 2018
1 parent 051c6e3 commit f705b59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Database/Statement/BufferedStatement.php
Expand Up @@ -92,6 +92,7 @@ public function fetch($type = 'num')
}

$record = parent::fetch($type);

if ($record === false) {
$this->_allFetched = true;
$this->_counter = $this->_count + 1;
Expand All @@ -116,7 +117,7 @@ public function fetchAssoc()
/**
* {@inheritdoc}
*/
public function fetchobject()
public function fetchObject()
{
return $this->fetch(parent::FETCH_TYPE_OBJ);
}
Expand Down

0 comments on commit f705b59

Please sign in to comment.