Sintaxis arreglada
This commit is contained in:
parent
f9a5b5bca7
commit
a52dce2b37
|
@ -1,19 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace App;
|
||||
namespace App\Utils;
|
||||
|
||||
class TransporteUtils
|
||||
{
|
||||
public const COSTO_TRANSPORTE = 15;
|
||||
public const DIVISOR_TRANSPORTE = 500;
|
||||
|
||||
static function cantidad(float $total) : int {
|
||||
private static function cantidad(float $total) : int {
|
||||
if ($total)
|
||||
return 1 + floor($total / DIVISOR_TRANSPORTE);
|
||||
return 1 + floor($total / TransporteUtils::DIVISOR_TRANSPORTE);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static function calcularTotal(float $total) : int {
|
||||
return cantidad($total) * COSTO_TRANSPORTE;
|
||||
public static function calcularTotal(float $total) : int {
|
||||
return TransporteUtils::cantidad($total) * TransporteUtils::COSTO_TRANSPORTE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue