pedi3/app/Utils/TransporteUtils.php

20 lines
398 B
PHP
Raw Normal View History

2024-03-20 00:00:36 -03:00
<?php
namespace App;
class TransporteUtils
{
public const COSTO_TRANSPORTE = 15;
public const DIVISOR_TRANSPORTE = 500;
static function cantidad(float $total) : int {
if ($total)
return 1 + floor($total / DIVISOR_TRANSPORTE);
return 0;
}
static function total(float $total) : int {
return cantidad($total) * COSTO_TRANSPORTE;
}
}