Skip to content

Commit

Permalink
Removed unnecessary whitespace in Pdo\Resultphp
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralph Schindler committed Nov 19, 2013
1 parent 6fb098c commit 806900c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions library/Zend/Db/Adapter/Driver/Pdo/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ public function current()

$this->currentData = $this->resource->fetch(\PDO::FETCH_ASSOC);
$this->currentComplete = true;

return $this->currentData;
}

Expand All @@ -133,7 +132,6 @@ public function next()
$this->currentData = $this->resource->fetch(\PDO::FETCH_ASSOC);
$this->currentComplete = true;
$this->position++;

return $this->currentData;
}

Expand Down Expand Up @@ -188,7 +186,6 @@ public function count()
} else {
$this->rowCount = (int) $this->resource->rowCount();
}

return $this->rowCount;
}

Expand Down

0 comments on commit 806900c

Please sign in to comment.