Expand import routine.

This commit is contained in:
James Cole
2017-06-20 21:04:25 +02:00
parent b9f110ac2b
commit a905cce2c9
16 changed files with 762 additions and 117 deletions

View File

@@ -284,6 +284,18 @@ class Steam
return $amount;
}
/**
* @param string $amount
*
* @return string
*/
public function opposite(string $amount): string
{
$amount = bcmul($amount, '-1');
return $amount;
}
/**
* @param $string
*