mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-24 06:54:02 +00:00
17 lines
328 B
PHP
17 lines
328 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Transactions\Services;
|
|
|
|
class CalculatesTransactionTransferFee
|
|
{
|
|
|
|
/**
|
|
* @param float $amount
|
|
* @param float $transfer_fee
|
|
* @return float
|
|
*/
|
|
public function execute(float $amount, ?float $transfer_fee = 0.002) {
|
|
return $amount * $transfer_fee/100;
|
|
}
|
|
|
|
} |