Skip to content

Commit

Permalink
Travis Trailing Spaces Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pauloelr authored and pauloelr committed Jun 10, 2013
1 parent ab14880 commit 26b52b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions library/Zend/Db/Sql/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -861,9 +861,9 @@ protected function processLimit(PlatformInterface $platform, DriverInterface $dr
if ($this->limit === null) {
return null;
}

$limit = (int) $this->limit;

if ($driver) {
$sql = $driver->formatParameterName('limit');
$parameterContainer->offsetSet('limit', $limit, ParameterContainer::TYPE_INTEGER);
Expand All @@ -879,9 +879,9 @@ protected function processOffset(PlatformInterface $platform, DriverInterface $d
if ($this->offset === null) {
return null;
}

$offset = (int) $this->offset;

if ($driver) {
$parameterContainer->offsetSet('offset', $offset, ParameterContainer::TYPE_INTEGER);
return array($driver->formatParameterName('offset'));
Expand Down

0 comments on commit 26b52b2

Please sign in to comment.