phpcs fix

This commit is contained in:
Frédéric FRANCE 2019-03-16 20:23:26 +01:00 committed by GitHub
parent dabccb7967
commit 9ed1e54b96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,13 +254,13 @@ if (empty($reshook))
{
foreach ($amounts as $key => $value) // How payment is dispatch
{
$newvalue = price2num($value,'MT');
$newvalue = price2num($value, 'MT');
$amounts[$key] = -$newvalue;
}
foreach ($multicurrency_amounts as $key => $value) // How payment is dispatch
{
$newvalue = price2num($value,'MT');
$newvalue = price2num($value, 'MT');
$multicurrency_amounts[$key] = -$newvalue;
}
}