Skip to content

Commit

Permalink
PHP CS Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
aurmil committed Dec 17, 2014
1 parent 6ef7901 commit 6e10549
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function applyFilterToCollection($filter, $from, $to)
$response = $this->_dispatchPreparePriceEvent($filter, $select);

$table = $this->_getIndexTableAlias();
$additional = join('', $response->getAdditionalCalculations());
$additional = implode('', $response->getAdditionalCalculations());
$rate = $filter->getCurrencyRate();
$priceExpr = new Zend_Db_Expr("(({$table}.min_price {$additional}) * {$rate})");

Expand Down Expand Up @@ -54,7 +54,7 @@ public function applyFilterToCollection($filter, $from, $to)
$response = $this->_dispatchPreparePriceEvent($filter, $select);

$table = $this->_getIndexTableAlias();
$additional = join('', $response->getAdditionalCalculations());
$additional = implode('', $response->getAdditionalCalculations());
$rate = $filter->getCurrencyRate();
$priceExpr = new Zend_Db_Expr("(({$table}.min_price {$additional}) * {$rate})");

Expand Down

0 comments on commit 6e10549

Please sign in to comment.