Browse Source

Removed type-o lower case.

Eugene Ritter 8 years ago
parent
commit
f705b59e4a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Database/Statement/BufferedStatement.php

+ 2 - 1
src/Database/Statement/BufferedStatement.php

@@ -92,6 +92,7 @@ class BufferedStatement extends StatementDecorator
         }
 
         $record = parent::fetch($type);
+
         if ($record === false) {
             $this->_allFetched = true;
             $this->_counter = $this->_count + 1;
@@ -116,7 +117,7 @@ class BufferedStatement extends StatementDecorator
     /**
      * {@inheritdoc}
      */
-    public function fetchobject()
+    public function fetchObject()
     {
         return $this->fetch(parent::FETCH_TYPE_OBJ);
     }