gitea_issues_exporter/app/Utils/utils.php

11 lines
176 B
PHP
Raw Normal View History

2024-08-12 15:55:03 +02:00
<?php
namespace App\Utils;
class utils
{
public static function round_up_to_two_decimals($number): float
{
return round(ceil($number * 100) / 100, 2);
}
}