This commit is contained in:
2024-04-24 19:08:28 +05:00
parent 0c799bf579
commit a6335d61b3

View File

@@ -27,11 +27,11 @@ class OnlinePaymentRepo
/**
* Set price
*
* @param int $price
* @param int|float|string $price
*/
public function getPrice(int|float|string $price): int
public function getPrice(int|float|string $price): string
{
return intval(number_format($price, 2, "", ""));
return number_format($price, 2, "", "");
}
/**