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)
{
* 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)
* 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)
/**
* 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());
}
/**
* 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();