Skip to content

Commit

Permalink
php-cs-fixer pass
Browse files Browse the repository at this point in the history
  • Loading branch information
olance committed May 10, 2019
1 parent 905d389 commit 6287c4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions controllers/hook/getContent.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ public function renderForm($merchant)
$pnxTabs[$tabId] = '' . $tabTitle;
}

$minAmount = (int)almaPriceFromCents($merchant->minimum_purchase_amount);
$maxAmount = (int)almaPriceFromCents($merchant->maximum_purchase_amount);
$minAmount = (int) almaPriceFromCents($merchant->minimum_purchase_amount);
$maxAmount = (int) almaPriceFromCents($merchant->maximum_purchase_amount);

$tpl = $this->context->smarty->createTemplate(
_PS_ROOT_DIR_ . "{$this->module->_path}/views/templates/hook/pnx_fees.tpl"
Expand Down
2 changes: 1 addition & 1 deletion includes/AlmaClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static function createInstance($apiKey, $mode = null)
try {
$alma = new Client($apiKey, array(
'mode' => $mode,
'logger' => AlmaLogger::instance()
'logger' => AlmaLogger::instance(),
));

$alma->addUserAgentComponent('PrestaShop', _PS_VERSION_);
Expand Down

0 comments on commit 6287c4e

Please sign in to comment.