This commit is contained in:
2024-04-30 23:24:35 +05:00
parent d53db60a20
commit 424c3f22d1
8 changed files with 7 additions and 25 deletions

View File

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