Skip to content

Commit

Permalink
Fix CS issue in unrelated component
Browse files Browse the repository at this point in the history
- trailing whitespace

Signed-off-by: Ralph Schindler <[email protected]>
  • Loading branch information
weierophinney authored and Ralph Schindler committed Apr 30, 2013
1 parent af7f7b0 commit 9c384f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Zend/Db/Sql/Platform/Oracle/SelectDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function processLimitOffset(PlatformInterface $platform, DriverInterfa
if ($parameterContainer) {
if ($this->limit === null) {
array_push($sqls, ') b ) WHERE b_rownum > (:offset)');
$parameterContainer->offsetSet('offset', $this->offset, $parameterContainer::TYPE_INTEGER);
$parameterContainer->offsetSet('offset', $this->offset, $parameterContainer::TYPE_INTEGER);
} else {
// create bottom part of query, with offset and limit using row_number
array_push($sqls, ') b WHERE rownum <= (:offset+:limit)) WHERE b_rownum >= (:offset + 1)');
Expand All @@ -129,7 +129,7 @@ protected function processLimitOffset(PlatformInterface $platform, DriverInterfa
} else {
if ($this->limit === null) {
array_push($sqls, ') b ) WHERE b_rownum > ('. (int) $this->offset. ')'
);
);
} else {
array_push($sqls, ') b WHERE rownum <= ('
. (int) $this->offset
Expand Down

0 comments on commit 9c384f8

Please sign in to comment.