From: Leandro Lucarella Date: Wed, 18 Jun 2003 18:42:10 +0000 (+0000) Subject: Se corrigen llamadas viejas a Time_Span. X-Git-Tag: svn_import~475 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/4a23903fc7aff32af88dd6817be6c1e28d2e99f3 Se corrigen llamadas viejas a Time_Span. --- diff --git a/lib/Tiempo/Banda.php b/lib/Tiempo/Banda.php index d53f2a3..b7f78f9 100644 --- a/lib/Tiempo/Banda.php +++ b/lib/Tiempo/Banda.php @@ -204,7 +204,7 @@ class Banda { function sacarTiempo($t) { - if(! is_a($t, "time_span")) return false; + if(! is_a($t, "date_span")) return false; $n_int = array(); while(count($this->intervalos) > 0) { @@ -234,7 +234,7 @@ class Banda { * Chequea si el intervalo pedido esta cubierto por la banda, si faltan * horas en la banta se retorna el tiempo que falta * - * @return Time_Span el periodo faltante + * @return Date_Span el periodo faltante * */ function chequearIntervalo($intervalo) @@ -253,7 +253,7 @@ class Banda { * si faltan horas en la banda(this) para llegar a banda(parametro) * se retorna el tiempo que falta * - * @return Time_Span el periodo faltante + * @return Date_Span el periodo faltante * */ function chequearBanda($banda) @@ -325,10 +325,10 @@ class Banda { /** * Devuelve el timpo total que contiene la banda. * - * @return object Time_Span Tiempo total. + * @return object Date_Span Tiempo total. */ function total() { - $t = new Time_Span; + $t = new Date_Span; foreach ($this->intervalos as $i) { $t->add($i->getDuracion()); } @@ -338,7 +338,7 @@ class Banda { /** * Alias de Banda::total() para compatibilidad con Intervalo. * - * @return object Time_Span Tiempo total. + * @return object Date_Span Tiempo total. */ function getDuracion() { return $this->total();